From 1b48f0f334b1912e1306d96233c3f54cf1342f0f Mon Sep 17 00:00:00 2001 From: AllanNICOLE Date: Sat, 20 Aug 2022 21:45:57 +0200 Subject: [PATCH] latest useful services options --- config_panel.toml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/config_panel.toml b/config_panel.toml index 7db2f93..d88af8e 100644 --- a/config_panel.toml +++ b/config_panel.toml @@ -60,3 +60,26 @@ services = ["__APP__"] help = "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." bind = "enableemailreminders:/opt/__APP__/config.yml" + [main.config.enable_userdeletion ] + ask.en = "Enable user deletion" + ask.fr = "Activer la suppression de compte" + type = "boolean" + yes = "true" + no = "false" + help = "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 for user deletion" + bind = "enableuserdeletion:/opt/__APP__/config.yml" + + [main.config.maxavatarsize] + ask.en = "Max avatar size" + ask.fr = "Taille maximum de l'avatar" + type = "number" + help = "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" + bind = "maxavatarsize:/opt/__APP__/config.yml" + + [main.config.maxitemsperpage] + ask.en = "Max items per page" + ask.fr = "Nombre d'éléments maximum par page" + type = "number" + help = "The max number of items which can be returned per page" + bind = "maxitemsperpage:/opt/__APP__/config.yml" +