mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
[mod] information needed for the admin UI
This commit is contained in:
parent
b46fb46768
commit
51175db814
1 changed files with 4 additions and 4 deletions
|
@ -1369,14 +1369,14 @@ def app_change_label(auth, app, new_label):
|
|||
def app_action_list(app_id):
|
||||
logger.warning(m18n.n('experimental_feature'))
|
||||
|
||||
installed = _is_installed(app_id)
|
||||
if not installed:
|
||||
raise MoulinetteError(errno.ENOPKG,
|
||||
m18n.n('app_not_installed', app=app_id))
|
||||
# this will take care of checking if the app is installed
|
||||
app_info_dict = app_info(app_id)
|
||||
|
||||
actions = os.path.join(APPS_SETTING_PATH, app_id, 'actions.json')
|
||||
|
||||
return {
|
||||
"app_id": app_id,
|
||||
"app_name": app_info_dict["name"],
|
||||
"actions": read_json(actions) if os.path.exists(actions) else [],
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue