@@ -391,22 +391,23 @@ Configuration of the project should be added to `.env.local`. Default values are
391391
392392``` dotenv
393393###> App ###
394- APP_ACTIVATION_CODE_EXPIRE_INTERVAL=P2D
395- APP_KEY_VAULT_SOURCE=ENVIRONMENT
396- APP_KEY_VAULT_JSON="{}"
397- EVENTDATABASE_API_V2_CACHE_EXPIRE_SECONDS=300
394+ DEFAULT_DATE_FORMAT='Y-m-d\TH:i:s.v\Z'
395+ ACTIVATION_CODE_EXPIRE_INTERVAL=P2D
396+ KEY_VAULT_SOURCE=ENVIRONMENT
397+ KEY_VAULT_JSON="{}"
398398TRACK_SCREEN_INFO=false
399399TRACK_SCREEN_INFO_UPDATE_INTERVAL_SECONDS=300
400400###< App ###
401401```
402402
403- - APP_ACTIVATION_CODE_EXPIRE_INTERVAL: Specifies how long an external user activation code should live.
403+ - DEFAULT_DATE_FORMAT: The default format of serialized dates.
404+ - ACTIVATION_CODE_EXPIRE_INTERVAL: Specifies how long an external user activation code should live.
404405 The format of the interval should follow < https://www.php.net/manual/en/dateinterval.construct.php > .
405406
406407 ** Default** : 2 days.
407- - APP_KEY_VAULT_SOURCE : Source of key-value pair for ` src/Service/KeyVaultService ` . Atm. "ENVIRONMENT" is the only
408+ - KEY_VAULT_SOURCE : Source of key-value pair for ` src/Service/KeyVaultService ` . Atm. "ENVIRONMENT" is the only
408409 option.
409- - APP_KEY_VAULT_JSON : A json object formatted as a string. Contains key-value pairs that can be accessed by through
410+ - KEY_VAULT_JSON : A json object formatted as a string. Contains key-value pairs that can be accessed by through
410411 ` src/Service/KeyVaultService ` .
411412- EVENTDATABASE_API_V2_CACHE_EXPIRE_SECONDS: What should the expire be for cache entries in EventDatabaseApiV2FeedType?
412413- TRACK_SCREEN_INFO: Should screen info be tracked (true|false)?
@@ -523,6 +524,17 @@ CLIENT_DEBUG=false
523524- See ` docs/configuration/openid-connect.md ` for configuration of OpenID Connect.
524525- See ` docs/configuration/calendar-api-feed.md ` for configuration of CalenderApiFeedType.
525526
527+ #### Event Database Api V2 Feed Type
528+
529+ ``` dotenv
530+ ###> Event Database Api V2 Feed Source ###
531+ EVENTDATABASE_API_V2_CACHE_EXPIRE_SECONDS=300
532+ ###< Event Database Api V2 Feed Source ###
533+ ```
534+
535+ - EVENTDATABASE_API_V2_CACHE_EXPIRE_SECONDS: What should the expiration be for cache entries in
536+ EventDatabaseApiV2FeedType?
537+
526538## Rest API & Relationships
527539
528540To avoid embedding all relations in REST representations but still allow the clients to minimize the amount of API calls
0 commit comments