mirror of
https://github.com/YunoHost-Apps/vikunja_ynh.git
synced 2024-09-03 18:06:26 +02:00
fix template config
This commit is contained in:
parent
2a7189dc67
commit
bd13bdc831
1 changed files with 7 additions and 7 deletions
|
@ -12,21 +12,21 @@ service:
|
||||||
# with a config file which will then be used.
|
# with a config file which will then be used.
|
||||||
rootpath: "/opt/vikunja/"
|
rootpath: "/opt/vikunja/"
|
||||||
# The max number of items which can be returned per page
|
# The max number of items which can be returned per page
|
||||||
maxitemsperpage: 50
|
maxitemsperpage: __MAXITEMSPERPAGE__
|
||||||
# Enable the caldav endpoint, see the docs for more details
|
# Enable the caldav endpoint, see the docs for more details
|
||||||
enablecaldav: true
|
enablecaldav: true
|
||||||
# Set the motd message, available from the /info endpoint
|
# Set the motd message, available from the /info endpoint
|
||||||
motd: __SET_MOTD__
|
motd: __SET_MOTD__
|
||||||
# Enable sharing of lists via a link
|
# Enable sharing of lists via a link
|
||||||
enablelinksharing: true
|
enablelinksharing: __ENABLE_LINKSHARING__
|
||||||
# Whether to let new users registering themselves or not
|
# Whether to let new users registering themselves or not
|
||||||
enableregistration: __ENABLE_REGISTRATION__
|
enableregistration: __ENABLE_REGISTRATION__
|
||||||
# Whether to enable task attachments or not
|
# Whether to enable task attachments or not
|
||||||
enabletaskattachments: true
|
enabletaskattachments: __ENABLE_TASKATTACHMENTS__
|
||||||
# The time zone all timestamps are in. Please note that time zones have to use [the official tz database names](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). UTC or GMT offsets won't work.
|
# The time zone all timestamps are in. Please note that time zones have to use [the official tz database names](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). UTC or GMT offsets won't work.
|
||||||
timezone: __TIMEZONE__
|
timezone: __TIMEZONE__
|
||||||
# Whether task comments should be enabled or not
|
# Whether task comments should be enabled or not
|
||||||
enabletaskcomments: true
|
enabletaskcomments: __ENABLE_TASKCOMMENTS__
|
||||||
# Whether totp is enabled. In most cases you want to leave that enabled.
|
# Whether totp is enabled. In most cases you want to leave that enabled.
|
||||||
enabletotp: true
|
enabletotp: true
|
||||||
# If not empty, enables logging of crashes and unhandled errors in sentry.
|
# If not empty, enables logging of crashes and unhandled errors in sentry.
|
||||||
|
@ -38,14 +38,14 @@ service:
|
||||||
testingtoken: ''
|
testingtoken: ''
|
||||||
# If enabled, vikunja will send an email to everyone who is either assigned to a task or created it when a task reminder
|
# If enabled, vikunja will send an email to everyone who is either assigned to a task or created it when a task reminder
|
||||||
# is due.
|
# is due.
|
||||||
enableemailreminders: true
|
enableemailreminders: __ENABLE_EMAILREMINDERS__
|
||||||
# If true, will allow users to request the complete deletion of their account. When using external authentication methods
|
# If true, will allow users to request the complete deletion of their account. When using external authentication methods
|
||||||
# it may be required to coordinate with them in order to delete the account. This setting will not affect the cli commands
|
# it may be required to coordinate with them in order to delete the account. This setting will not affect the cli commands
|
||||||
# for user deletion.
|
# for user deletion.
|
||||||
enableuserdeletion: true
|
enableuserdeletion: __ENABLE_USERDELETION__
|
||||||
# The maximum size clients will be able to request for user avatars.
|
# The maximum size clients will be able to request for user avatars.
|
||||||
# If clients request a size bigger than this, it will be changed on the fly.
|
# If clients request a size bigger than this, it will be changed on the fly.
|
||||||
maxavatarsize: 1024
|
maxavatarsize: __MAXAVATARSIZE__
|
||||||
|
|
||||||
database:
|
database:
|
||||||
# Database type to use. Supported types are mysql, postgres and sqlite.
|
# Database type to use. Supported types are mysql, postgres and sqlite.
|
||||||
|
|
Loading…
Reference in a new issue