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

remove not useful slash

This commit is contained in:
OniriCorpe 2024-01-25 20:38:30 +01:00 committed by grosmanal
parent 467796d445
commit 99e602138f

View file

@ -43,6 +43,10 @@ function synchronize_users() {
ynh_print_info --message="Synchronizing forgejo users" ynh_print_info --message="Synchronizing forgejo users"
# Fetch the token independently such that it's redacted by Yunohost logging mechanism # Fetch the token independently such that it's redacted by Yunohost logging mechanism
forgejo_api_token=$(ynh_app_setting_get --app=$app --key=forgejo_api_token) forgejo_api_token=$(ynh_app_setting_get --app=$app --key=forgejo_api_token)
# Remove trailing slash from path
local no_trailing_slash_path=${path%/}
# User synchronization must be launched using API : no cli exists for this purpose (https://codeberg.org/forgejo/forgejo/issues/953) # User synchronization must be launched using API : no cli exists for this purpose (https://codeberg.org/forgejo/forgejo/issues/953)
curl --url https://${domain}${path}/api/v1/admin/cron/sync_external_users -X POST -H "Authorization: token $forgejo_api_token" -kfsS curl --url https://${domain}${no_trailing_slash_path}/api/v1/admin/cron/sync_external_users -X POST -H "Authorization: token $forgejo_api_token" -kfsS
} }