feat(Relays): added logic to manage relays #63

Closed
y wants to merge 8 commits from relays-management into main
Showing only changes of commit 5a8c6c8183 - Show all commits

View File

@ -13,6 +13,7 @@ export const appPrivateRoutes = {
create: '/create',
sign: '/sign',
verify: '/verify',
profileSettings: '/settings/profile/:npub',
relays: '/relays'
}
@ -26,6 +27,9 @@ export const appPublicRoutes = {
export const getProfileRoute = (hexKey: string) =>
appPublicRoutes.profile.replace(':npub', hexToNpub(hexKey))
export const getProfileSettingsRoute = (hexKey: string) =>
appPrivateRoutes.profileSettings.replace(':npub', hexToNpub(hexKey))
export const publicRoutes = [
{
path: appPublicRoutes.landingPage,
@ -60,6 +64,10 @@ export const privateRoutes = [
path: appPrivateRoutes.verify,
element: <VerifyPage />
},
{
path: appPrivateRoutes.profileSettings,
element: <ProfilePage />
},
{
path: appPrivateRoutes.relays,
element: <RelaysPage />