Web:Studio:Added the PORTAL_RENAMING route.

This commit is contained in:
Vlada Gazizova 2022-04-05 23:03:42 +03:00
parent 7deb741978
commit fa9b365211

View File

@ -20,6 +20,9 @@ const LanguageAndTimeZoneSettings = lazy(() =>
const WelcomePageSettings = lazy(() =>
import("./categories/common/settingsCustomization/welcome-page-settings")
);
const PortalRenaming = lazy(() =>
import("./categories/common/settingsCustomization/portal-renaming")
);
const TeamTemplate = lazy(() => import("./categories/common/team-template"));
const ThirdPartyServices = lazy(() =>
import("./categories/integration/thirdPartyServicesSettings")
@ -59,6 +62,10 @@ const WELCOME_PAGE_SETTINGS_URL = combineUrl(
PROXY_BASE_URL,
"/common/customization/welcome-page-settings"
);
const PORTAL_RENAMING = combineUrl(
PROXY_BASE_URL,
"/common/customization/portal-renaming"
);
const TEAM_TEMPLATE_URL = combineUrl(
PROXY_BASE_URL,
"/common/customization/team-template"
@ -100,6 +107,7 @@ const Settings = () => {
path={WELCOME_PAGE_SETTINGS_URL}
component={WelcomePageSettings}
/>
<Route exact path={PORTAL_RENAMING} component={PortalRenaming} />
<Route exact path={WHITELABEL_URL} component={WhiteLabel} />
<Route exact path={TEAM_TEMPLATE_URL} component={TeamTemplate} />