mirror of
https://github.com/YunoHost-Apps/spip_ynh.git
synced 2024-09-03 20:25:59 +02:00
remove the tmp fix
This commit is contained in:
parent
14237a512d
commit
aafdb97742
3 changed files with 1 additions and 30 deletions
|
@ -14,7 +14,7 @@
|
||||||
"email": "cyp@rouquin.me"
|
"email": "cyp@rouquin.me"
|
||||||
},
|
},
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"yunohost": ">= 4.1.0"
|
"yunohost": ">= 4.2.8"
|
||||||
},
|
},
|
||||||
"multi_instance": true,
|
"multi_instance": true,
|
||||||
"services": [
|
"services": [
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
ynh_permission_has_user() {
|
|
||||||
local legacy_args=pu
|
|
||||||
# Declare an array to define the options of this helper.
|
|
||||||
local -A args_array=( [p]=permission= [u]=user= )
|
|
||||||
local permission
|
|
||||||
local user
|
|
||||||
# Manage arguments with getopts
|
|
||||||
ynh_handle_getopts_args "$@"
|
|
||||||
|
|
||||||
if ! ynh_permission_exists --permission=$permission
|
|
||||||
then
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Check both allowed and corresponding_users sections in the json
|
|
||||||
for section in "allowed" "corresponding_users"
|
|
||||||
do
|
|
||||||
if yunohost user permission info "$app.$permission" --output-as json --quiet \
|
|
||||||
| jq -e --arg user $user --arg section $section '.[$section] | index($user)' >/dev/null
|
|
||||||
then
|
|
||||||
return 0
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
return 1
|
|
||||||
}
|
|
|
@ -8,7 +8,6 @@
|
||||||
|
|
||||||
source _common.sh
|
source _common.sh
|
||||||
source /usr/share/yunohost/helpers
|
source /usr/share/yunohost/helpers
|
||||||
source _ynh_permission_has_user.sh
|
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# LOAD SETTINGS
|
# LOAD SETTINGS
|
||||||
|
|
Loading…
Reference in a new issue