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

Commit 570a51c

Browse files
Merge pull request #22 from topcoder-platform/feature/add-taas-admin-app
feat: add TaaS Admin App menu item
2 parents b1b831e + 98c9623 commit 570a51c

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
import createTeamIcon from '../assets/images/create-team.svg';
@@ -36,6 +37,12 @@ export const APP_CATEGORIES = [
3637
},
3738
],
3839
},
40+
{
41+
title: 'TaaS Admin',
42+
icon: appTaasAdminIcon,
43+
path: '/taas-admin',
44+
menu: [],
45+
},
3946
{
4047
title: 'Documentation',
4148
icon: appDocumentationIcon,

0 commit comments

Comments
 (0)