send_ynh/config_panel.toml

45 lines
1.6 KiB
TOML
Raw Normal View History

2024-11-07 09:26:42 +01:00
version = "1.0"
[main]
name.en = "Send configuration"
name.fr = "Configuration de Send"
services = ["__APP__"]
[main.config]
name.en = "Configuration Options"
name.fr = "Options de configuration"
[main.config.max_file_size]
ask.en = "Max File Size"
ask.fr = "Taille maximale du fichier"
type = "number"
2024-11-07 09:58:09 +01:00
default = 100
help.en = "Choose the maximum file size allowed to send (in Mo)"
help.fr = "Choisissez la taille maximale du fichier autorisé à envoyer (en Mo)"
2024-11-07 16:11:14 +01:00
bind = "max_file_size:/var/www/__APP__/server/config.js"
2024-11-07 09:26:42 +01:00
2024-11-07 16:11:14 +01:00
[main.config.max_downloads]
ask.en = "Max downloads"
ask.fr = "Téléchargements maximal"
2024-11-07 09:26:42 +01:00
type = "number"
2024-11-07 09:31:16 +01:00
default = 100
2024-11-07 09:26:42 +01:00
help.en = "Define the maximum download limit"
help.fr = "Définir la limite maximale du nombre de téléchargement"
2024-11-07 16:11:14 +01:00
bind = "max_downloads:/var/www/__APP__/server/config.js"
2024-11-07 09:26:42 +01:00
[main.config.custom_title]
ask.en = "Custom Title"
ask.fr = "Titre personnalisé"
type = "string"
2024-11-07 16:21:30 +01:00
help.en = "Add a custom title for Send"
help.fr = "Ajouter un titre personnalisé pour Send"
2024-11-07 16:11:14 +01:00
bind = "custom_title:/var/www/__APP__/server/config.js"
2024-11-07 09:26:42 +01:00
[main.config.custom_description]
ask.en = "Custom Description"
ask.fr = "Description personnalisée"
type = "string"
2024-11-07 16:21:30 +01:00
help.en = "Add a custom description for Send"
help.fr = "Ajouter une description personnalisée pour Send"
2024-11-07 16:11:14 +01:00
bind = "custom_description:/var/www/__APP__/server/config.js"