MR comments

- added error handler for unauthorized
This commit is contained in:
Davor 2022-06-09 12:21:47 +02:00
parent 907e0ecaab
commit 19bc31e6e3
4 changed files with 12 additions and 2 deletions

View file

@ -12,6 +12,7 @@ class RoleService:
def get_role_by_id(role_id):
return Role.query.filter_by(id=role_id).first()
@staticmethod
def is_user_admin(userId):
dashboard_role_id = AppRole.query.filter_by(user_id=userId, app_id=1).first().role_id
return dashboard_role_id == 1