1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-11-08 21:21:06 +00:00
AdvLabDB/advlabdb/customClasses.py

14 lines
389 B
Python
Raw Normal View History

from flask_admin import AdminIndexView as OldAdminIndexView
from flask_admin.contrib.sqla import ModelView as OldModelView
from flask_security import current_user
class AdminIndexView(OldAdminIndexView):
def is_accessible(self):
return current_user.has_role("admin")
class ModelView(OldModelView):
def is_accessible(self):
return current_user.has_role("admin")