mirror of
https://github.com/YunoHost-Apps/lutim_ynh.git
synced 2024-09-03 19:36:24 +02:00
26 lines
No EOL
850 B
Bash
26 lines
No EOL
850 B
Bash
#!/bin/bash
|
|
|
|
# Source app helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
app=$1
|
|
added_users=$2
|
|
permission=$3
|
|
added_groups=$4
|
|
|
|
if [ "$app" == __APP__ ]; then
|
|
if [ "$permission" = "upload images" ]; then # The fake permission "upload images" is modifed.
|
|
if [ "$added_groups" = "visitors" ]; then # As is it a fake permission we can only grant/remove the "visitors" group.
|
|
|
|
# We remove the regex, no more protection is needed.
|
|
ynh_app_setting_delete --app=$app --key=protected_regex
|
|
|
|
# Sync the is_public variable according to the permission
|
|
ynh_app_setting_set --app=$app --key=is_public --value=1
|
|
|
|
yunohost app ssowatconf
|
|
else
|
|
ynh_print_warn --message="This app doesn't support this authorisation, you can only add or remove visitors group."
|
|
fi
|
|
fi
|
|
fi |