mirror of
https://github.com/YunoHost-Apps/send_ynh.git
synced 2025-09-08 04:52:59 +02:00
add config panel
This commit is contained in:
@ -3,6 +3,22 @@
|
||||
source _common.sh
|
||||
source /usr/share/yunohost/helpers
|
||||
|
||||
#=================================================
|
||||
# INITIALIZE AND STORE SETTINGS
|
||||
#=================================================
|
||||
|
||||
custom_title="Send"
|
||||
ynh_app_setting_set --key=custom_title --value="$custom_title"
|
||||
|
||||
custom_description="Encrypt and send files with a link that automatically expires to ensure your important documents don’t stay online forever."
|
||||
ynh_app_setting_set --key=custom_description --value="$custom_description"
|
||||
|
||||
max_file_size="2684354560"
|
||||
ynh_app_setting_set --key=cmax_file_size --value="$max_file_size"
|
||||
|
||||
max_download="100"
|
||||
ynh_app_setting_set --key=max_download --value="$max_download"
|
||||
|
||||
#=================================================
|
||||
# INSTALL DEPENDENCIES
|
||||
#=================================================
|
||||
|
Reference in New Issue
Block a user