return domains of internal apps
This commit is contained in:
parent
a2019a32d0
commit
fd28d5b774
3 changed files with 27 additions and 4 deletions
|
|
@ -108,7 +108,7 @@ def list_app():
|
|||
apps = App.query.all()
|
||||
|
||||
for obj in apps:
|
||||
print(f"App name: {obj.name} \t Slug: {obj.slug}")
|
||||
print(f"App name: {obj.name}\tSlug: {obj.slug},\tURL: {obj.get_url()}\tStatus: {obj.get_status()}")
|
||||
|
||||
|
||||
@app_cli.command(
|
||||
|
|
|
|||
Reference in a new issue