diff --git a/web/ASC.Web.Client/src/components/pages/Settings/index.js b/web/ASC.Web.Client/src/components/pages/Settings/index.js index 57ffdd56d9..17cda8a8b8 100644 --- a/web/ASC.Web.Client/src/components/pages/Settings/index.js +++ b/web/ASC.Web.Client/src/components/pages/Settings/index.js @@ -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} /> +