authsquare/app/config/globalvar.py

44 lines
1.0 KiB
Python
Raw Normal View History

2024-06-17 17:38:53 +07:00
title = "Authsquare"
header = f"Welcome to {title}"
copyright = "Copyright (C) 2024 Dita Aji Pratama"
menu = {
2024-06-17 17:40:15 +07:00
production = False
su_mode = True
"public": {
"navbar": [
{
"name":"Home",
"target":"_self",
"href":"/",
2024-06-17 12:51:09 +07:00
"roles":[0,1,2,3]
},
{
2024-06-17 12:51:09 +07:00
"name":"Dashboard",
"target":"_self",
2024-06-17 12:51:09 +07:00
"href":"/portal/dashboard",
"roles":[1,2]
},
{
2024-06-17 12:51:09 +07:00
"name":"Register",
"target":"_self",
2024-06-17 17:39:36 +07:00
"href":"/register/member",
2024-06-17 12:51:09 +07:00
"roles":[0]
},
{
"name":"Login",
"target":"_self",
"href":"/portal/login",
"roles":[0]
},
{
"name":"Logout",
"target":"_self",
"href":"/portal/logout",
"roles":[1,2,3]
}
]
}
}