diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e42af9d7c..387af63dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: java-version: '17' distribution: 'temurin' - name: "Gradle: Validate Gradle Wrapper" - uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3 + uses: gradle/actions/wrapper-validation@v3 - name: "Gradle: Build" uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 env: @@ -133,7 +133,7 @@ jobs: java-version: '17' distribution: 'temurin' - name: "Gradle: Validate Gradle Wrapper" - uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3 + uses: gradle/actions/wrapper-validation@v3 - name: "Gradle: Generate TypeScript Library Code" uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 env: diff --git a/CHANGELOG.md b/CHANGELOG.md index 077146340..269942a68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ please see [changelog_updates.md](docs/dev/changelog_updates.md). #### Major - The Catalog Crawler has been moved to the AP repository. +- Removed MDS theme and MDS specific flags in the UI. #### Minor @@ -60,6 +61,9 @@ please see [changelog_updates.md](docs/dev/changelog_updates.md). # Direct URL to the UPDATE_PASSWORD required action in Keycloak AUTHORITY_PORTAL_FRONTEND_UPDATE_PASSWORD_URL: https://[KC_FQDN]/realms/authority-portal/protocol/openid-connect/auth?response_type=code&client_id=oauth2-proxy&scope=openid&kc_action=UPDATE_PASSWORD&redirect_uri=[AP_FQDN_URL_ENCODED]%2Foauth2%2Fcallback ``` + - Removed variables: + - `AUTHORITY_PORTAL_FRONTEND_IFRAME_URL` + - The MDS theme is no longer available, so configurations using `mds-open-source` will revert to the default sovity theme #### Compatible Versions diff --git a/authority-portal-frontend/.env.local-dev b/authority-portal-frontend/.env.local-dev index fe9fc3596..e4cd72312 100644 --- a/authority-portal-frontend/.env.local-dev +++ b/authority-portal-frontend/.env.local-dev @@ -5,7 +5,6 @@ AUTHORITY_PORTAL_FRONTEND_LOGIN_URL=https://this-is-your-keycloak-login-url AUTHORITY_PORTAL_FRONTEND_LOGOUT_URL=https://this-is-your-keycloak-logout-url AUTHORITY_PORTAL_FRONTEND_INVALIDATE_SESSION_COOKIES_URL=https://your-session-is-invalidated-now.com AUTHORITY_PORTAL_FRONTEND_USE_FAKE_BACKEND=true -AUTHORITY_PORTAL_FRONTEND_IFRAME_URL=https://mobility-dataspa-5n9px2qi7r.live-website.com/mds-news AUTHORITY_PORTAL_FRONTEND_PRIVACY_POLICY_URL=https://privacy-policy-url/ AUTHORITY_PORTAL_FRONTEND_LEGAL_NOTICE_URL=https://legal-notice-url AUTHORITY_PORTAL_FRONTEND_SUPPORT_URL=https://support-url diff --git a/authority-portal-frontend/.env.local-e2e-dev b/authority-portal-frontend/.env.local-e2e-dev index 08ab77bbd..dc7fdee0c 100644 --- a/authority-portal-frontend/.env.local-e2e-dev +++ b/authority-portal-frontend/.env.local-e2e-dev @@ -5,10 +5,9 @@ AUTHORITY_PORTAL_FRONTEND_LOGIN_URL=https://this-is-your-keycloak-login-url AUTHORITY_PORTAL_FRONTEND_LOGOUT_URL=https://this-is-your-keycloak-logout-url AUTHORITY_PORTAL_FRONTEND_INVALIDATE_SESSION_COOKIES_URL=https://your-session-is-invalidated-now.com AUTHORITY_PORTAL_FRONTEND_USE_LOCAL_BACKEND=true -AUTHORITY_PORTAL_FRONTEND_IFRAME_URL=https://mobility-dataspa-5n9px2qi7r.live-website.com/mds-news -AUTHORITY_PORTAL_FRONTEND_PRIVACY_POLICY_URL=https://mobility-dataspace.online/privacy-policy-mds-portal/ -AUTHORITY_PORTAL_FRONTEND_LEGAL_NOTICE_URL=https://mobility-dataspace.eu/legal-notice -AUTHORITY_PORTAL_FRONTEND_SUPPORT_URL=https://support.mobility-dataspace.eu +AUTHORITY_PORTAL_FRONTEND_PRIVACY_POLICY_URL=https://sovity.de/en/privacy-policy/ +AUTHORITY_PORTAL_FRONTEND_LEGAL_NOTICE_URL=https://sovity.de/en/imprint/ +AUTHORITY_PORTAL_FRONTEND_SUPPORT_URL=https://support.sovity.de/ AUTHORITY_PORTAL_FRONTEND_ACTIVE_PROFILE=sovity-open-source AUTHORITY_PORTAL_FRONTEND_BRAND_SHORT_NAME=sovity AUTHORITY_PORTAL_FRONTEND_PORTAL_DISPLAY_NAME=Authority Portal diff --git a/authority-portal-frontend/src/app/app-routing.module.ts b/authority-portal-frontend/src/app/app-routing.module.ts index 44d01107c..8047ed633 100644 --- a/authority-portal-frontend/src/app/app-routing.module.ts +++ b/authority-portal-frontend/src/app/app-routing.module.ts @@ -31,7 +31,6 @@ import {DashboardPageComponent} from './pages/dashboard-page/dashboard-page/dash import {LoadingPageComponent} from './pages/empty-pages/loading-page/loading-page/loading-page.component'; import {PageNotFoundPageComponent} from './pages/empty-pages/page-not-found-page/page-not-found-page/page-not-found-page.component'; import {UnauthenticatedPageComponent} from './pages/empty-pages/unauthenticated-page/unauthenticated-page/unauthenticated-page.component'; -import {HomePageComponent} from './pages/home/home/home.component'; import {ParticipantOwnConnectorDetailPageComponent} from './pages/participant-own-connector-detail-page/participant-own-connector-detail-page/participant-own-connector-detail-page.component'; import {ParticipantOwnConnectorListPageComponent} from './pages/participant-own-connector-list-page/participant-own-connector-list-page/participant-own-connector-list-page.component'; import {OrganizationCreatePageComponent} from './pages/registration-pages/organization-create-page/organization-create-page/organization-create-page.component'; @@ -94,23 +93,6 @@ export const CATALOG_REDIRECTS: Routes = REDIRECT_TO_HOME.map((path) => ({ pathMatch: 'full', })); -export const HOME_REDIRECTS: Routes = REDIRECT_TO_HOME.map((path) => ({ - path, - redirectTo: (() => getProperRedirectUrl('home'))(), - pathMatch: 'full', -})); - -export const FEATURE_HOME_ROUTE: Routes = [ - { - path: 'home', - component: HomePageComponent, - data: { - requiresRole: ['USER'] satisfies UserRoleDto[], - }, - canActivate: [requiresRole], - }, -]; - export const FEATURE_DASHBOARD_ROUTE: Routes = [ { path: 'dashboard', diff --git a/authority-portal-frontend/src/app/app.module.ts b/authority-portal-frontend/src/app/app.module.ts index 68591f74a..5c055dd74 100644 --- a/authority-portal-frontend/src/app/app.module.ts +++ b/authority-portal-frontend/src/app/app.module.ts @@ -50,7 +50,6 @@ import {DashboardPageModule} from './pages/dashboard-page/dashboard.module'; import {LoadingPageModule} from './pages/empty-pages/loading-page/loading-page.module'; import {PageNotFoundPageModule} from './pages/empty-pages/page-not-found-page/page-not-found-page.module'; import {UnauthenticatedPageModule} from './pages/empty-pages/unauthenticated-page/unauthenticated-page.module'; -import {MdsHomePageModule} from './pages/home/home.module'; import {ParticipantOwnConnectorDetailPageModule} from './pages/participant-own-connector-detail-page/participant-own-connector-detail-page.module'; import {ParticipantOwnConnectorListPageModule} from './pages/participant-own-connector-list-page/participant-own-connector-list-page.module'; import {OrganizationCreatePageModule} from './pages/registration-pages/organization-create-page/organization-create-page.module'; @@ -107,7 +106,6 @@ import {SharedModule} from './shared/shared.module'; ControlCenterUserProfilePageModule, DashboardPageModule, LoadingPageModule, - MdsHomePageModule, OrganizationCreatePageModule, OrganizationOnboardPageModule, OrganizationPendingPageModule, diff --git a/authority-portal-frontend/src/app/core/global-state/routes/route-config-service.ts b/authority-portal-frontend/src/app/core/global-state/routes/route-config-service.ts index 8e02d3d19..3e9e09b9d 100644 --- a/authority-portal-frontend/src/app/core/global-state/routes/route-config-service.ts +++ b/authority-portal-frontend/src/app/core/global-state/routes/route-config-service.ts @@ -18,8 +18,6 @@ import { AUTHORITY_PORTAL_ROUTES, CATALOG_REDIRECTS, FEATURE_DASHBOARD_ROUTE, - FEATURE_HOME_ROUTE, - HOME_REDIRECTS, LOADING_ROUTES, ONBOARDING_ROUTES, PENDING_ROUTES, @@ -41,9 +39,7 @@ export class RouteConfigService { AUTHORITY_PORTAL: AUTHORITY_PORTAL_ROUTES, }; - defaultRoute = this.activeFeatureSet.isHomePageEnabled() - ? '/home' - : '/catalog'; + readonly defaultRoute = '/catalog'; constructor( private router: Router, @@ -93,9 +89,7 @@ export class RouteConfigService { const existingChildren = rootRoute.children || []; // Add home route depending on feature set - const newChildren = this.activeFeatureSet.isHomePageEnabled() - ? [...existingChildren, ...HOME_REDIRECTS, ...FEATURE_HOME_ROUTE] - : [...existingChildren, ...CATALOG_REDIRECTS]; + const newChildren = [...existingChildren, ...CATALOG_REDIRECTS]; // Add additional routes depending on feature set & configuration if (this.activeFeatureSet.isDashboardEnabled()) { diff --git a/authority-portal-frontend/src/app/core/services/config/active-feature-set.ts b/authority-portal-frontend/src/app/core/services/config/active-feature-set.ts index 9538175c5..d5124953d 100644 --- a/authority-portal-frontend/src/app/core/services/config/active-feature-set.ts +++ b/authority-portal-frontend/src/app/core/services/config/active-feature-set.ts @@ -18,18 +18,6 @@ import {UiFeature} from './profiles/ui-feature'; export class ActiveFeatureSet { constructor(@Inject(APP_CONFIG) private config: AppConfig) {} - usesMdsId(): boolean { - return this.has('mds-id'); - } - - usesBritishCatalogue(): boolean { - return this.has('catalogue'); - } - - isHomePageEnabled(): boolean { - return this.has('enable-home'); - } - // This is configurable via environment variable, not via theme isDashboardEnabled(): boolean { return this.config.enableDashboard; diff --git a/authority-portal-frontend/src/app/core/services/config/app-config.ts b/authority-portal-frontend/src/app/core/services/config/app-config.ts index 9b1e3c30f..576a9229a 100644 --- a/authority-portal-frontend/src/app/core/services/config/app-config.ts +++ b/authority-portal-frontend/src/app/core/services/config/app-config.ts @@ -48,7 +48,6 @@ export interface AppConfig { privacyPolicyUrl: string; legalNoticeUrl: string; supportUrl: string; - iframeUrl: string; backendUrl: string; loginUrl: string; @@ -75,7 +74,6 @@ export interface AppConfigEnv { AUTHORITY_PORTAL_FRONTEND_USE_FAKE_BACKEND: string; AUTHORITY_PORTAL_FRONTEND_USE_LOCAL_BACKEND: string; AUTHORITY_PORTAL_FRONTEND_INVALIDATE_SESSION_COOKIES_URL: string; - AUTHORITY_PORTAL_FRONTEND_IFRAME_URL?: string; AUTHORITY_PORTAL_FRONTEND_PRIVACY_POLICY_URL: string; AUTHORITY_PORTAL_FRONTEND_LEGAL_NOTICE_URL: string; AUTHORITY_PORTAL_FRONTEND_SUPPORT_URL: string; @@ -108,8 +106,6 @@ export function buildAppConfig(envVars: AppConfigEnv): AppConfig { envVars.AUTHORITY_PORTAL_FRONTEND_USE_FAKE_BACKEND === 'true', useLocalBackend: envVars.AUTHORITY_PORTAL_FRONTEND_USE_LOCAL_BACKEND === 'true', - - iframeUrl: envVars.AUTHORITY_PORTAL_FRONTEND_IFRAME_URL ?? '', privacyPolicyUrl: envVars.AUTHORITY_PORTAL_FRONTEND_PRIVACY_POLICY_URL, legalNoticeUrl: envVars.AUTHORITY_PORTAL_FRONTEND_LEGAL_NOTICE_URL, supportUrl: envVars.AUTHORITY_PORTAL_FRONTEND_SUPPORT_URL, diff --git a/authority-portal-frontend/src/app/core/services/config/profiles/feature-sets/mds-features.ts b/authority-portal-frontend/src/app/core/services/config/profiles/feature-sets/mds-features.ts deleted file mode 100644 index f33c4af8a..000000000 --- a/authority-portal-frontend/src/app/core/services/config/profiles/feature-sets/mds-features.ts +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright (c) 2024 sovity GmbH - * - * This program and the accompanying materials are made available under the - * terms of the Apache License, Version 2.0 which is available at - * https://www.apache.org/licenses/LICENSE-2.0 - * - * SPDX-License-Identifier: Apache-2.0 - * - * Contributors: - * sovity GmbH - initial implementation - */ -import {UiFeature} from '../ui-feature'; - -export const MDS_FEATURES: UiFeature[] = [ - 'mds-id', - 'catalogue', - 'iframe-in-home', - 'enable-home', - 'uses-logging-house', -]; diff --git a/authority-portal-frontend/src/app/core/services/config/profiles/ui-color-theme.ts b/authority-portal-frontend/src/app/core/services/config/profiles/ui-color-theme.ts index 89a861d7d..870c379ee 100644 --- a/authority-portal-frontend/src/app/core/services/config/profiles/ui-color-theme.ts +++ b/authority-portal-frontend/src/app/core/services/config/profiles/ui-color-theme.ts @@ -11,4 +11,4 @@ * sovity GmbH - initial implementation */ -export type UiColorTheme = 'theme-sovity' | 'theme-mds'; +export type UiColorTheme = 'theme-sovity'; diff --git a/authority-portal-frontend/src/app/core/services/config/profiles/ui-feature.ts b/authority-portal-frontend/src/app/core/services/config/profiles/ui-feature.ts index 676a2cfeb..fcd630a7d 100644 --- a/authority-portal-frontend/src/app/core/services/config/profiles/ui-feature.ts +++ b/authority-portal-frontend/src/app/core/services/config/profiles/ui-feature.ts @@ -12,18 +12,9 @@ */ export type UiFeature = - // Replaces 'Organization ID' with MDS ID. Keep in mind that the actual ID format is generated by the backend and needs to be configured there - | 'mds-id' - - // Enables the homepage. If this is not enabled, the default page will be the Catalog - | 'enable-home' - // Show an iFrame on the homepage. The URL needs to be configured in the theme. Requires 'enable-home' | 'iframe-in-home' - // Replaces 'Catalog' with 'Catalogue' - | 'catalogue' - // Enables the 'Powered by sovity' footer to be used in instances hosted by sovity | 'powered-by-sovity' diff --git a/authority-portal-frontend/src/app/core/services/config/profiles/ui-profile-data.ts b/authority-portal-frontend/src/app/core/services/config/profiles/ui-profile-data.ts index c0fe1e334..b68bcd1a3 100644 --- a/authority-portal-frontend/src/app/core/services/config/profiles/ui-profile-data.ts +++ b/authority-portal-frontend/src/app/core/services/config/profiles/ui-profile-data.ts @@ -10,9 +10,8 @@ * Contributors: * sovity GmbH - initial implementation */ -import {MDS_FEATURES} from './feature-sets/mds-features'; import {inferUiProfileType} from './infer-ui-profile-type'; -import {MDS_THEME, SOVITY_THEME} from './ui-theme-data'; +import {SOVITY_THEME} from './ui-theme-data'; /** * List of available profiles. @@ -24,8 +23,4 @@ export const UI_PROFILE_DATA = inferUiProfileType({ ...SOVITY_THEME, features: new Set(), }, - 'mds-open-source': { - ...MDS_THEME, - features: new Set([...MDS_FEATURES]), - }, }); diff --git a/authority-portal-frontend/src/app/core/services/config/profiles/ui-theme-data.ts b/authority-portal-frontend/src/app/core/services/config/profiles/ui-theme-data.ts index 0c2b730aa..dd4aeaa85 100644 --- a/authority-portal-frontend/src/app/core/services/config/profiles/ui-theme-data.ts +++ b/authority-portal-frontend/src/app/core/services/config/profiles/ui-theme-data.ts @@ -34,25 +34,3 @@ export const SOVITY_THEME: UiThemeConfig = { caasResellerBrandLogoSrc: 'assets/images/sovity_caas_logo.svg', copyrightCompanyName: 'sovity GmbH', }; - -export const MDS_THEME: UiThemeConfig = { - theme: 'theme-mds', - brandFaviconSrc: 'assets/images/logo_light.svg', - brandLogo: {src: 'assets/images/mds_logo_yellow.svg', class: 'scale-100'}, - brandLogoSmall: { - src: '/assets/images/mds_logo_no_text.svg', - class: 'scale-[0.7]', - }, - brandLogoUnauthenticatedPage: { - src: 'assets/images/mds_logo_black.svg', - class: 'scale-150 mb-14', - }, - brandLogoOnboardingPage: { - src: '/assets/images/mds_logo_black.svg', - class: '', - }, - connectorSelfOwnedIconSrc: 'assets/images/mds_self-hosted-connector_logo.svg', - connectorCaasIconSrc: 'assets/images/mds_request-caas_logo.svg', - caasResellerBrandLogoSrc: 'assets/images/mds_caas_logo.svg', - copyrightCompanyName: 'DRM Datenraum Mobilität GmbH', -}; diff --git a/authority-portal-frontend/src/app/pages/authority-connector-list-page/authority-connector-list-page/authority-connector-list-page.component.ts b/authority-portal-frontend/src/app/pages/authority-connector-list-page/authority-connector-list-page/authority-connector-list-page.component.ts index c62167a3b..d232196e6 100644 --- a/authority-portal-frontend/src/app/pages/authority-connector-list-page/authority-connector-list-page/authority-connector-list-page.component.ts +++ b/authority-portal-frontend/src/app/pages/authority-connector-list-page/authority-connector-list-page/authority-connector-list-page.component.ts @@ -17,7 +17,6 @@ import {takeUntil} from 'rxjs/operators'; import {Store} from '@ngxs/store'; import {ConnectorOverviewEntryDto} from '@sovity.de/authority-portal-client'; import {GlobalStateUtils} from 'src/app/core/global-state/global-state-utils'; -import {ActiveFeatureSet} from 'src/app/core/services/config/active-feature-set'; import {SlideOverService} from 'src/app/core/services/slide-over.service'; import {sliderOverNavigation} from 'src/app/core/utils/helper'; import {getConnectorsTypeClasses} from 'src/app/core/utils/ui-utils'; @@ -63,11 +62,8 @@ export class AuthorityConnectorListPageComponent implements OnInit, OnDestroy { private globalStateUtils: GlobalStateUtils, private slideOverService: SlideOverService, private titleService: Title, - private activeFeatureSet: ActiveFeatureSet, ) { - this.activeFeatureSet.usesMdsId() - ? this.titleService.setTitle('MDS Connectors') - : this.titleService.setTitle('All Connectors'); + this.titleService.setTitle('All Connectors'); } ngOnInit() { diff --git a/authority-portal-frontend/src/app/pages/authority-organization-list-page/authority-organization-list-page/authority-organization-list-page.component.html b/authority-portal-frontend/src/app/pages/authority-organization-list-page/authority-organization-list-page/authority-organization-list-page.component.html index bd7e3f78c..57d38fa6c 100644 --- a/authority-portal-frontend/src/app/pages/authority-organization-list-page/authority-organization-list-page/authority-organization-list-page.component.html +++ b/authority-portal-frontend/src/app/pages/authority-organization-list-page/authority-organization-list-page/authority-organization-list-page.component.html @@ -16,9 +16,7 @@
Congratulations on successfully onboarding to our platform! We're diff --git a/authority-portal-frontend/src/app/pages/registration-pages/organization-pending-page/organization-pending-page/organization-pending-page.component.html b/authority-portal-frontend/src/app/pages/registration-pages/organization-pending-page/organization-pending-page/organization-pending-page.component.html index 7c7c9d4bc..881011fb7 100644 --- a/authority-portal-frontend/src/app/pages/registration-pages/organization-pending-page/organization-pending-page/organization-pending-page.component.html +++ b/authority-portal-frontend/src/app/pages/registration-pages/organization-pending-page/organization-pending-page/organization-pending-page.component.html @@ -7,28 +7,7 @@ alt="Logo" [attr.src]="appConfig.brandLogoUnauthenticatedPage.src" [class]="appConfig.brandLogoUnauthenticatedPage.class" /> -
- Our community team will review your profile and confirm your access - within the next 2-3 business days. You will receive a confirmation - email with a link to the portal where you can sign in using your - credentials. In the meantime, feel free to check out some interesting MDS - resources: -
-Our team will review your profile and confirm your access diff --git a/authority-portal-frontend/src/app/pages/registration-pages/organization-rejected-page/organization-rejected-page/organization-rejected-page.component.html b/authority-portal-frontend/src/app/pages/registration-pages/organization-rejected-page/organization-rejected-page/organization-rejected-page.component.html index 7ee8598f9..9cb071594 100644 --- a/authority-portal-frontend/src/app/pages/registration-pages/organization-rejected-page/organization-rejected-page/organization-rejected-page.component.html +++ b/authority-portal-frontend/src/app/pages/registration-pages/organization-rejected-page/organization-rejected-page/organization-rejected-page.component.html @@ -7,32 +7,7 @@ alt="logo" [attr.src]="appConfig.brandLogoUnauthenticatedPage.src" [class]="appConfig.brandLogoUnauthenticatedPage.class" /> -
- Our community team has thoroughly reviewed your profile, but - unfortunately, we are currently unable to grant you access to the - MDS Portal. Please note that access to the MDS Portal is exclusive to MDS - members. For further information, please reach out to our community team - at - community@mobility-dataspace.eu. -
- -Our team has thoroughly reviewed your profile, but diff --git a/authority-portal-frontend/src/app/pages/sp-connector-list-page/sp-connector-list-page/sp-connector-list-page.component.ts b/authority-portal-frontend/src/app/pages/sp-connector-list-page/sp-connector-list-page/sp-connector-list-page.component.ts index 9659adc10..9fbbc7622 100644 --- a/authority-portal-frontend/src/app/pages/sp-connector-list-page/sp-connector-list-page/sp-connector-list-page.component.ts +++ b/authority-portal-frontend/src/app/pages/sp-connector-list-page/sp-connector-list-page/sp-connector-list-page.component.ts @@ -22,7 +22,6 @@ import { UserRoleDto, } from '@sovity.de/authority-portal-client'; import {GlobalStateUtils} from 'src/app/core/global-state/global-state-utils'; -import {ActiveFeatureSet} from 'src/app/core/services/config/active-feature-set'; import {SlideOverService} from 'src/app/core/services/slide-over.service'; import {sliderOverNavigation} from 'src/app/core/utils/helper'; import {getConnectorsTypeClasses} from 'src/app/core/utils/ui-utils'; @@ -70,11 +69,8 @@ export class SpConnectorListPageComponent implements OnInit, OnDestroy { private router: Router, private slideOverService: SlideOverService, private titleService: Title, - private activeFeatureSet: ActiveFeatureSet, ) { - this.activeFeatureSet.usesMdsId() - ? this.titleService.setTitle('MDS Provided Connectors') - : this.titleService.setTitle('Provided Connectors'); + this.titleService.setTitle('Provided Connectors'); } ngOnInit() { diff --git a/authority-portal-frontend/src/app/shared/business/connector-registering-success-message-page/connector-registering-success-message-page.component.html b/authority-portal-frontend/src/app/shared/business/connector-registering-success-message-page/connector-registering-success-message-page.component.html index 85ba13763..f3c256b78 100644 --- a/authority-portal-frontend/src/app/shared/business/connector-registering-success-message-page/connector-registering-success-message-page.component.html +++ b/authority-portal-frontend/src/app/shared/business/connector-registering-success-message-page/connector-registering-success-message-page.component.html @@ -1,11 +1,7 @@
To setup the connector, you will have to follow the Deployment Guide in the
- {{
- ('mds-id' | isActiveFeature)
- ? 'MDS Wiki'
- : 'EDC repository which you can find by clicking the button below'
- }}.
+ EDC repository which you can find by clicking the button below.
To get you started, we have prepared the following: