
Old roles systems was not practical and too complicated. That is why I have removed the old system and starting new one. Meantime I have added a new admin application for admin functions.
5 lines
86 B
Python
5 lines
86 B
Python
from flask import Blueprint
|
|
|
|
admin = Blueprint('admin', __name__)
|
|
|
|
from . import views |