Skip to content

Commit 4601058

Browse files
author
CsB-Polymesh
committed
commit 1 secondary key permissions
1 parent bbe2460 commit 4601058

24 files changed

Lines changed: 3397 additions & 0 deletions

src/constants/routes/index.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const Landing = lazy(() => import('~/layouts/Landing'));
66
const Overview = lazy(() => import('~/layouts/Overview'));
77
const Portfolio = lazy(() => import('~/layouts/Portfolio'));
88
const Authorizations = lazy(() => import('~/layouts/Authorizations'));
9+
const SecondaryKeys = lazy(() => import('~/layouts/SecondaryKeys'));
910
const Transfers = lazy(() => import('~/layouts/Transfers'));
1011
const MultiSig = lazy(() => import('~/layouts/MultiSig'));
1112
const Claims = lazy(() => import('~/layouts/Claims'));
@@ -47,6 +48,7 @@ export const PATHS = {
4748
TRANSFERS: '/transfers',
4849
MULTISIG: '/multisig',
4950
AUTHORIZATIONS: '/authorizations',
51+
SECONDARY_KEYS: '/secondary-key-permissions',
5052
CLAIMS: '/claims',
5153
DISTRIBUTIONS: '/distributions',
5254
SETTINGS: '/settings',
@@ -77,6 +79,11 @@ export const ROUTES = [
7779
label: 'Authorizations',
7880
component: Authorizations,
7981
},
82+
{
83+
path: PATHS.SECONDARY_KEYS,
84+
label: 'Secondary Key Permissions',
85+
component: SecondaryKeys,
86+
},
8087
{ path: PATHS.SETTINGS, label: 'Settings', component: Settings },
8188
{
8289
path: PATHS.TRANSFERS,
@@ -156,6 +163,11 @@ export const NAV_LINKS = [
156163
icon: 'AuthorizationsIcon',
157164
notifications: 'authorizations',
158165
},
166+
{
167+
path: PATHS.SECONDARY_KEYS,
168+
label: 'Secondary Key Permissions',
169+
icon: 'KeyIcon',
170+
},
159171
{ path: PATHS.CLAIMS, label: 'Claims', icon: 'ClaimsIcon' },
160172
{
161173
path: PATHS.DISTRIBUTIONS,

0 commit comments

Comments
 (0)