mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-18 21:49:37 -04:00
cleaning up navigation
This commit is contained in:
28
app/utils/navigation_dictionaries.py
Normal file
28
app/utils/navigation_dictionaries.py
Normal file
@@ -0,0 +1,28 @@
|
||||
def using_organization_nav():
|
||||
return [
|
||||
{
|
||||
"name": "Usage",
|
||||
"link": ".organization_dashboard",
|
||||
"requires_permission": False,
|
||||
},
|
||||
{
|
||||
"name": "Team members",
|
||||
"link": ".manage_org_users",
|
||||
"requires_permission": False,
|
||||
},
|
||||
{
|
||||
"name": "Settings",
|
||||
"link": ".organization_settings",
|
||||
"requires_permission": False,
|
||||
},
|
||||
{
|
||||
"name": "Trial mode services",
|
||||
"link": ".organization_trial_mode_services",
|
||||
"requires_permission": False,
|
||||
},
|
||||
{
|
||||
"name": "Billing",
|
||||
"link": ".organization_billing",
|
||||
"requires_permission": False,
|
||||
},
|
||||
]
|
||||
Reference in New Issue
Block a user