User Settings
Profile
Login into your dashboard as a user and visit the followign route after running the filekit project.
User profile settings is accessible at
https://localhost:3000/settings/profile
.
Teams
Login into your dashboard as a user and visit the following route after running the filekit project.
User teams settings is accessible at
http://localhost:3000/settings/teams
.
Billing
Login into your dashboard as a user and visit the followign route after running the filekit project.
User teams settings is accessible at
http://localhost:3000/settings/billing
.
Customize User Settings Menu
Find menu.ts
file in src/config
and find UserSettingsPageMenus
. In this constant you will be able to customize the menu items according to your need.
export const UserSettingsPageMenus: Menu[] = [
{
name: 'Profile',
href: PAGES.SETTINGS.USER.PROFILE,
},
{
name: 'Teams',
href: PAGES.SETTINGS.USER.TEAMS,
},
{
name: 'Billing',
href: PAGES.SETTINGS.USER.BILLING,
},
];
Customize User Settings Page Routes
Find pages.ts
file in src/config
and look for USER
,it will be under SETTINGS
obejct.
USER: {
PROFILE: '/settings/profile',
BILLING: '/settings/billing',
TEAMS: '/settings/teams',
},