Fix statelessness
This commit is contained in:
parent
d98f9a9efd
commit
8c5ce93d79
4 changed files with 4 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
# Riverside Therapeutics — Project Context
|
# Riverside Physical Therapy — Project Context
|
||||||
|
|
||||||
## What this is
|
## What this is
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
# Riverside Patient Tracker
|
# Riverside Physical Therapy
|
||||||
|
|
||||||
A Drupal-based appointment scheduling site for booking sessions between patients and practitioners.
|
A Drupal-based appointment scheduling site for booking sessions between patients and practitioners.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ services:
|
||||||
DB_NAME: drupal
|
DB_NAME: drupal
|
||||||
DB_USER: drupal
|
DB_USER: drupal
|
||||||
DB_PASS: drupal
|
DB_PASS: drupal
|
||||||
SITE_NAME: "Riverside Therapeutics"
|
SITE_NAME: "Riverside Physical Therapy"
|
||||||
ADMIN_PASS: "${ADMIN_PASS:?ADMIN_PASS is required}"
|
ADMIN_PASS: "${ADMIN_PASS:?ADMIN_PASS is required}"
|
||||||
HASH_SALT: "${HASH_SALT:?HASH_SALT is required}"
|
HASH_SALT: "${HASH_SALT:?HASH_SALT is required}"
|
||||||
DEBUG: "${DEBUG:-true}"
|
DEBUG: "${DEBUG:-true}"
|
||||||
|
|
|
||||||
|
|
@ -191,6 +191,7 @@ function _riverside_pt_rebuild(): void {
|
||||||
}
|
}
|
||||||
|
|
||||||
\Drupal::configFactory()->getEditable('system.site')
|
\Drupal::configFactory()->getEditable('system.site')
|
||||||
|
->set('name', 'Riverside Physical Therapy')
|
||||||
->set('page.front', '/home')
|
->set('page.front', '/home')
|
||||||
->save();
|
->save();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue