Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 762e7ea

Browse files
MadOPcodemaxceem
authored andcommitted
feat: add TaaS Admin App menu item
1 parent 77dbb3e commit 762e7ea

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,6 @@ dist
102102

103103
# TernJS port file
104104
.tern-port
105+
106+
# VS Code settings
107+
.vscode/

src/assets/images/taas-admin.png

5.85 KB
Loading

src/constants/apps.js

+7
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
*/
44
import appDocumentationIcon from "../assets/images/learn.svg";
55
import appTaasIcon from "../assets/images/integrations.svg";
6+
import appTaasAdminIcon from "../assets/images/taas-admin.png";
67
import myteamsIcon from "../assets/images/my-teams.svg";
78
import myteamsGreenIcon from "../assets/images/my-teams-green.svg";
89

@@ -26,6 +27,12 @@ export const APP_CATEGORIES = [
2627
},
2728
],
2829
},
30+
{
31+
title: "TaaS Admin",
32+
icon: appTaasAdminIcon,
33+
path: "/taas-admin",
34+
menu: [],
35+
},
2936
{
3037
title: "Documentation",
3138
icon: appDocumentationIcon,

0 commit comments

Comments
 (0)