diff --git a/api/controllers/console/app/app.py b/api/controllers/console/app/app.py index 1a38bcba7e..fb3205813d 100644 --- a/api/controllers/console/app/app.py +++ b/api/controllers/console/app/app.py @@ -190,6 +190,10 @@ class AppExportApi(Resource): @get_app_model def get(self, app_model): """Export app""" + # The role of the current user in the ta table must be admin, owner, or editor + if not current_user.is_editor: + raise Forbidden() + app_service = AppService() return {