allow to disable multi-day events, fix #215

This commit is contained in:
lesion
2022-12-05 23:03:10 +01:00
parent d536499a08
commit 6391a21956
6 changed files with 13 additions and 2 deletions

View File

@@ -27,6 +27,7 @@ const defaultSettings = {
instance_place: '',
allow_registration: true,
allow_anon_event: true,
allow_multidate_event: true,
allow_recurrent_event: false,
recurrent_event_visible: false,
allow_geolocation: true,

View File

@@ -80,6 +80,7 @@ module.exports = {
allow_registration: settings.allow_registration,
allow_anon_event: settings.allow_anon_event,
allow_recurrent_event: settings.allow_recurrent_event,
allow_multidate_event: settings.allow_multidate_event,
recurrent_event_visible: settings.recurrent_event_visible,
enable_federation: settings.enable_federation,
enable_resources: settings.enable_resources,