mirror of
https://github.com/veops/cmdb.git
synced 2025-08-07 23:34:00 +08:00
9 lines
199 B
Python
9 lines
199 B
Python
# -*- coding:utf-8 -*-
|
|
|
|
|
|
from flask.ext.principal import RoleNeed, Permission
|
|
|
|
|
|
admin = Permission(RoleNeed('admin'))
|
|
auth = Permission(RoleNeed('authenticated'))
|
|
null = Permission(RoleNeed('null')) |