return domains of internal apps

This commit is contained in:
Maarten de Waard 2022-09-26 13:42:13 +02:00
parent a2019a32d0
commit fd28d5b774
No known key found for this signature in database
GPG key ID: 1D3E893A657CC8DA
3 changed files with 27 additions and 4 deletions

View file

@ -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(