12 lines
403 B
Python
12 lines
403 B
Python
|
|
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)'},
|
||
|
|
]),
|
||
|
|
}
|