1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-19 18:31:16 +00:00
AdvLabDB/advlabdb/customClasses.py

17 lines
410 B
Python
Raw Normal View History

from flask_admin import AdminIndexView
from flask_admin.contrib.sqla import ModelView
from flask_security import current_user
class SecureAdminIndexView(AdminIndexView):
def is_accessible(self):
return current_user.has_role("admin")
class SecureModelView(ModelView):
can_export = True
2021-04-24 12:01:14 +00:00
can_set_page_size = True
def is_accessible(self):
return current_user.has_role("admin")