fix double logging in extension, dont get apps with name or status null and update package_repo.py script

This commit is contained in:
LeonOstrez
2023-10-01 14:43:28 +01:00
parent ac5637671c
commit 5af4ce1492
3 changed files with 42 additions and 19 deletions

View File

@@ -51,7 +51,7 @@ TABLES = [
]
def get_created_apps():
return [model_to_dict(app) for app in App.select()]
return [model_to_dict(app) for app in App.select().where((App.name.is_null(False)) & (App.status.is_null(False)))]
def get_created_apps_with_steps():