mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Fix app_ssowatconf
This commit is contained in:
parent
353b29613d
commit
69c0d33bb1
1 changed files with 1 additions and 1 deletions
|
@ -1325,7 +1325,7 @@ def app_ssowatconf():
|
|||
permissions[perm_name] = {
|
||||
"users": perm_info['corresponding_users'],
|
||||
"label": perm_info['label'],
|
||||
"show_tile": perm_info['show_tile'] if not perm_info["url"].startswith('re:') else False,
|
||||
"show_tile": perm_info['show_tile'] if perm_info['url'] and not perm_info["url"].startswith('re:') else False,
|
||||
"auth_header": perm_info['auth_header'],
|
||||
"public": "visitors" in perm_info["allowed"],
|
||||
"uris": uris
|
||||
|
|
Loading…
Add table
Reference in a new issue