feat(mitt-konto): Added link to CIAM self-service to support edit functionality. (TV-954)

Merge in TEA/mina-sidor-fa-web from feature/TV-954-CIAM-self-service-link to develop

Squashed commit of the following:

commit 86ce019f1cbe2b78fec6f07ce28318004daf3b3f
Author: Erik Tiekstra <erik.tiekstra@arbetsformedlingen.se>
Date:   Mon Dec 6 14:41:51 2021 +0100

    Added link to CIAM self-service
This commit is contained in:
Erik Tiekstra
2021-12-07 09:44:58 +01:00
parent e940d5dbf5
commit 551f9e2f91
7 changed files with 18 additions and 9 deletions
@@ -2,5 +2,6 @@ export interface Ciam {
clientId: string;
loginUrl: string;
logoutUrl: string;
selfServiceUrl: string;
refreshUrl: string;
}
@@ -1,4 +1,5 @@
import { Feature } from '@msfa-enums/feature.enum';
import { Ciam } from './ciam.model';
export interface Environment {
version?: string;
@@ -8,12 +9,7 @@ export interface Environment {
headers: { [key: string]: string };
skipHeadersOn: string[];
};
ciam: {
clientId?: string;
loginUrl: string;
logoutUrl: string;
refreshUrl: string;
};
ciam: Ciam;
activeFeatures: Feature[];
elastic?: {
serviceName: string;