mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Merge pull request #1120 from YunoHost/app_list_domain_path
[enh] display domain_path of app on app list
This commit is contained in:
commit
f7c3521e27
1 changed files with 3 additions and 0 deletions
|
@ -163,6 +163,9 @@ def app_info(app, full=False):
|
||||||
'version': local_manifest.get('version', '-'),
|
'version': local_manifest.get('version', '-'),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if "domain" in settings and "path" in settings:
|
||||||
|
ret["domain_path"] = settings["domain"] + settings["path"]
|
||||||
|
|
||||||
if not full:
|
if not full:
|
||||||
return ret
|
return ret
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue