1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gotosocial_ynh.git synced 2024-09-03 19:16:06 +02:00

Deleting residual parameters

This commit is contained in:
OniriCorpe 2023-04-11 17:24:01 +02:00 committed by GitHub
parent 96e3803419
commit 440a38b5b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -276,18 +276,22 @@ then
if [ -n "$allow_custom_css" ]
then
ynh_app_setting_set --app="$app" --key=accounts_allow_custom_css --value="allow_custom_css"
ynh_app_setting_delete --app="$app" --key=allow_custom_css
fi
if [ -n "$approval_required" ]
then
ynh_app_setting_set --app="$app" --key=accounts_approval_required --value="approval_required"
ynh_app_setting_delete --app="$app" --key=approval_required
fi
if [ -n "$reason_required" ]
then
ynh_app_setting_set --app="$app" --key=accounts_reason_required --value="reason_required"
ynh_app_setting_delete --app="$app" --key=reason_required
fi
if [ -n "$registration_open" ]
then
ynh_app_setting_set --app="$app" --key=accounts_registration_open --value="registration_open"
ynh_app_setting_delete --app="$app" --key=registration_open
fi
#=================================================