Development
This commit is contained in:
parent
6d9aac0460
commit
59ac3c5973
20 changed files with 1466 additions and 1 deletions
11
docker/routlin-dash/app/pages/accountmanage/view.py
Normal file
11
docker/routlin-dash/app/pages/accountmanage/view.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import json
|
||||
|
||||
|
||||
def collect_tokens(cfg):
|
||||
return {
|
||||
'ACCOUNT_LEVEL_OPTIONS': json.dumps([
|
||||
{'value': 'viewer', 'label': 'Viewer (read-only access to live data)'},
|
||||
{'value': 'administrator', 'label': 'Administrator (can modify configuration)'},
|
||||
{'value': 'manager', 'label': 'Manager (full access including account management)'},
|
||||
]),
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue