1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/phpbb_ynh.git synced 2024-09-03 19:56:36 +02:00

fix the permission url

This commit is contained in:
Kay0u 2021-06-28 17:26:30 +02:00
parent 651c9b3c86
commit cd50f8c353
No known key found for this signature in database
GPG key ID: AAFEEB16CFA2AE2D
2 changed files with 2 additions and 2 deletions

View file

@ -142,7 +142,7 @@ then
fi
# Only the admin can access the admin panel of the app (if the app has an admin panel)
ynh_permission_create --permission="admin" --url="/admin" --allowed=$admin
ynh_permission_create --permission="admin" --url="/adm" --allowed=$admin
#=================================================
# RELOAD NGINX

View file

@ -63,7 +63,7 @@ fi
if ! ynh_permission_exists --permission="admin"; then
# Create the required permissions
ynh_permission_create --permission="admin" --url="/admin" --allowed=$admin
ynh_permission_create --permission="admin" --url="/adm" --allowed=$admin
fi
#=================================================