-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.mjs
More file actions
25 lines (25 loc) · 689 Bytes
/
ui.mjs
File metadata and controls
25 lines (25 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
export let menu = [
{
title: "Me",
public: true,
items: [
{title: "Sign in", path: "/login", public: true, hideWhenSignedIn: true},
{title: "Profile", path: "/profile"}
]
},
{
title: "System",
permission: "admin",
items: [
{title: "API keys", path: "/system/apikeys"},
{title: "Federation", path: "/setup/federation"},
{title: "Jobs", path: "/setup/jobs"},
{title: "Logs", path: "/logs"},
{title: "Mods", path: "/setup/mods"},
{title: "Menu", path: "/setup/menu"},
{title: "Setup", path: "/setup"},
{title: "Tools", path: "/systemtools"},
{title: "Users", path: "/setup/users"}
]
}
]