mirror of
https://github.com/OMGeeky/gpt-pilot.git
synced 2026-02-13 21:18:14 +01:00
fix double logging in extension, dont get apps with name or status null and update package_repo.py script
This commit is contained in:
@@ -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():
|
||||
|
||||
Reference in New Issue
Block a user