-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathappsettings.json
More file actions
110 lines (110 loc) · 4.45 KB
/
Copy pathappsettings.json
File metadata and controls
110 lines (110 loc) · 4.45 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"AdminLte": {
"BrandText": "AdminLTE 4",
"BrandUrl": "/",
"LogoImage": "https://cdn.jsdelivr.net/npm/admin-lte@4.0.2/dist/assets/img/AdminLTELogo.png",
"SidebarTheme": "dark",
"DefaultColorMode": "auto",
"ColorModeToggle": true,
"CommandPalette": true,
"FooterText": "AdminLTE.io",
"Menu": [
{ "Header": "MAIN NAVIGATION" },
{
"Text": "Dashboard",
"Icon": "bi bi-speedometer",
"Children": [
{ "Text": "Dashboard v1", "Url": "/", "Icon": "bi bi-circle" },
{ "Text": "Dashboard v2", "Url": "/dashboard/v2", "Icon": "bi bi-circle" },
{ "Text": "Dashboard v3", "Url": "/dashboard/v3", "Icon": "bi bi-circle" }
]
},
{
"Text": "Widgets",
"Icon": "bi bi-grid-1x2",
"Children": [
{ "Text": "Small Boxes", "Url": "/widgets/small-boxes", "Icon": "bi bi-circle" },
{ "Text": "Cards", "Url": "/widgets/cards", "Icon": "bi bi-circle" },
{ "Text": "Stretch", "Url": "/widgets/stretch", "Icon": "bi bi-circle" }
]
},
{
"Text": "UI Elements",
"Icon": "bi bi-tree-fill",
"Children": [
{ "Text": "General", "Url": "/ui/general", "Icon": "bi bi-circle" },
{ "Text": "Icons", "Url": "/ui/icons", "Icon": "bi bi-circle" },
{ "Text": "Timeline", "Url": "/ui/timeline", "Icon": "bi bi-circle" }
]
},
{
"Text": "Forms",
"Icon": "bi bi-input-cursor-text",
"Children": [
{ "Text": "General", "Url": "/forms/general", "Icon": "bi bi-circle" },
{ "Text": "Elements", "Url": "/forms/elements", "Icon": "bi bi-circle" },
{ "Text": "Layout", "Url": "/forms/layout", "Icon": "bi bi-circle" },
{ "Text": "Validation", "Url": "/forms/validation", "Icon": "bi bi-circle" },
{ "Text": "Wizard", "Url": "/forms/wizard", "Icon": "bi bi-circle" },
{ "Text": "Editor", "Url": "/forms/editor", "Icon": "bi bi-circle" }
]
},
{
"Text": "Tables",
"Icon": "bi bi-table",
"Children": [
{ "Text": "Simple Tables", "Url": "/tables/simple", "Icon": "bi bi-circle" },
{ "Text": "Data Tables", "Url": "/tables/data", "Icon": "bi bi-circle" }
]
},
{
"Text": "Mailbox",
"Icon": "bi bi-envelope",
"Children": [
{ "Text": "Inbox", "Url": "/mailbox/inbox", "Icon": "bi bi-circle" },
{ "Text": "Compose", "Url": "/mailbox/compose", "Icon": "bi bi-circle" },
{ "Text": "Read", "Url": "/mailbox/read", "Icon": "bi bi-circle" }
]
},
{ "Header": "EXAMPLES" },
{ "Text": "Calendar", "Url": "/calendar", "Icon": "bi bi-calendar3" },
{ "Text": "Kanban Board", "Url": "/kanban", "Icon": "bi bi-kanban" },
{ "Text": "Chat", "Url": "/chat", "Icon": "bi bi-chat-dots" },
{ "Text": "File Manager", "Url": "/file-manager", "Icon": "bi bi-folder" },
{ "Text": "Profile", "Url": "/profile", "Icon": "bi bi-person-badge" },
{ "Text": "Projects", "Url": "/projects", "Icon": "bi bi-folder2-open" },
{ "Text": "Invoice", "Url": "/invoice", "Icon": "bi bi-receipt" },
{ "Text": "Pricing", "Url": "/pricing", "Icon": "bi bi-tag" },
{ "Text": "Settings", "Url": "/settings", "Icon": "bi bi-gear" },
{ "Text": "FAQ", "Url": "/faq", "Icon": "bi bi-question-circle" },
{
"Text": "Error pages",
"Icon": "bi bi-exclamation-octagon",
"Children": [
{ "Text": "404", "Url": "/404", "Icon": "bi bi-circle" },
{ "Text": "500", "Url": "/500", "Icon": "bi bi-circle" },
{ "Text": "Maintenance", "Url": "/maintenance", "Icon": "bi bi-circle" }
]
},
{ "Header": "ACCOUNT" },
{ "Text": "Login", "Url": "/login", "Icon": "bi bi-box-arrow-in-right" },
{ "Text": "Login v2", "Url": "/login-v2", "Icon": "bi bi-box-arrow-in-right" },
{ "Text": "Register", "Url": "/register", "Icon": "bi bi-person-plus" },
{ "Text": "Register v2", "Url": "/register-v2", "Icon": "bi bi-person-plus" },
{ "Text": "Lockscreen", "Url": "/lockscreen", "Icon": "bi bi-lock" },
{
"Text": "AdminLTE.io",
"Url": "https://adminlte.io",
"Icon": "bi bi-box-arrow-up-right",
"Target": "_blank"
}
]
}
}