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

feat: add TaaS Admin App menu item #22

Merged
merged 2 commits into from
May 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,6 @@ dist

# TernJS port file
.tern-port

# VS Code settings
.vscode/
Binary file added src/assets/images/taas-admin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/constants/apps.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
*/
import appDocumentationIcon from '../assets/images/learn.svg';
import appTaasIcon from '../assets/images/integrations.svg';
import appTaasAdminIcon from '../assets/images/taas-admin.png';
import myteamsIcon from '../assets/images/my-teams.svg';
import myteamsGreenIcon from '../assets/images/my-teams-green.svg';
import createTeamIcon from '../assets/images/create-team.svg';
Expand Down Expand Up @@ -36,6 +37,12 @@ export const APP_CATEGORIES = [
},
],
},
{
title: 'TaaS Admin',
icon: appTaasAdminIcon,
path: '/taas-admin',
menu: [],
},
{
title: 'Documentation',
icon: appDocumentationIcon,
Expand Down