diff options
author | Richard Steinmetz <richard@steinmetz.cloud> | 2023-11-13 17:36:24 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2023-11-23 17:54:10 +0100 |
commit | d593206a30310de781dc456f965c8111900b01a9 (patch) | |
tree | 7200f338b7c2a97966cb210d32bea3909d9d44ee /config/config.sample.php | |
parent | 9f9abd1a57ae58289c82f0f4417507c61f9b8ab6 (diff) | |
download | nextcloud-server-d593206a30310de781dc456f965c8111900b01a9.tar.gz nextcloud-server-d593206a30310de781dc456f965c8111900b01a9.zip |
feat(dav): dispatch out-of-office started and ended events
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to 'config/config.sample.php')
-rw-r--r-- | config/config.sample.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 27b99636a22..a1f7332c404 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -229,6 +229,16 @@ $CONFIG = [ 'force_locale' => 'en_US', /** + * This sets the default timezone on your Nextcloud server, using IANA + * identifiers like ``Europe/Berlin`` or ``Pacific/Auckland``. The default + * timezone parameter is only used when the timezone of the user can't be + * determined. + * + * Defaults to ``UTC`` + */ +'default_timezone' => 'Europe/Berlin', + +/** * ``true`` enables the Help menu item in the user menu (top right of the * Nextcloud Web interface). ``false`` removes the Help item. */ |