mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Only filter stuff if a filter is set...
This commit is contained in:
parent
7989271e74
commit
23e816deaa
1 changed files with 3 additions and 3 deletions
|
@ -75,7 +75,8 @@ def user_permission_list(
|
||||||
|
|
||||||
# Parse / organize information to be outputed
|
# Parse / organize information to be outputed
|
||||||
installed_apps = sorted(_installed_apps())
|
installed_apps = sorted(_installed_apps())
|
||||||
apps = apps if apps else installed_apps
|
filter_ = apps
|
||||||
|
apps = filter_ if filter_ else installed_apps
|
||||||
apps_base_path = {
|
apps_base_path = {
|
||||||
app: app_setting(app, "domain") + app_setting(app, "path")
|
app: app_setting(app, "domain") + app_setting(app, "path")
|
||||||
for app in apps
|
for app in apps
|
||||||
|
@ -90,8 +91,7 @@ def user_permission_list(
|
||||||
|
|
||||||
if ignore_system_perms and app in SYSTEM_PERMS:
|
if ignore_system_perms and app in SYSTEM_PERMS:
|
||||||
continue
|
continue
|
||||||
|
if filter_ and app not in apps:
|
||||||
if app not in apps:
|
|
||||||
continue
|
continue
|
||||||
|
|
||||||
perm = {}
|
perm = {}
|
||||||
|
|
Loading…
Add table
Reference in a new issue