Merge branch 'main' into fix/chore-fix

This commit is contained in:
Yeuoly
2024-11-26 18:02:41 +08:00
26 changed files with 509 additions and 123 deletions

View File

@ -190,7 +190,7 @@ class AppCopyApi(Resource):
)
session.commit()
stmt = select(App).where(App.id == result.app.id)
stmt = select(App).where(App.id == result.app_id)
app = session.scalar(stmt)
return app, 201