1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/dotclear2_ynh.git synced 2024-09-03 18:26:29 +02:00

Fix missing admin permission

This commit is contained in:
yalh76 2021-05-18 04:14:20 +02:00
parent 6c1d892f00
commit ee4aabfae9

View file

@ -83,6 +83,11 @@ if [ -n "$is_public" ]; then
ynh_app_setting_delete --app=$app --key=is_public
fi
if ! ynh_permission_exists --permission="admin"; then
# Create the required permissions
ynh_permission_create --permission="admin" --url="/admin" --allowed=$admin
fi
#=================================================
# CREATE DEDICATED USER
#=================================================