feat(settings): Added feature toggling. (TV-564)
Squashed commit of the following: commit b67cced3bd44d1673173e5fa188d776d2d097fd4 Author: Erik Tiekstra <erik.tiekstra@arbetsformedlingen.se> Date: Fri Sep 10 11:59:37 2021 +0200 Added feature toggling for routes and navigation
This commit is contained in:
19
apps/mina-sidor-fa/src/environments/ciam.ts
Normal file
19
apps/mina-sidor-fa/src/environments/ciam.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
import { Ciam } from '@msfa-models/ciam.model';
|
||||
|
||||
export const CIAM_TEST: Ciam = {
|
||||
clientId: '5d08c2e4-763e-42f6-b858-24e4773bb83d',
|
||||
loginUrl: 'https://ciam-test.arbetsformedlingen.se:8443/uas/oauth2/authorization?response_type=code&scope=openid',
|
||||
logoutUrl: 'https://ciam-test.arbetsformedlingen.se:8443/uas/logout',
|
||||
};
|
||||
|
||||
export const CIAM_PROD: Ciam = {
|
||||
clientId: '71010833-e445-4bbc-926a-775247b7a6e3',
|
||||
loginUrl: 'https://ciam.arbetsformedlingen.se/uas/oauth2/authorization?response_type=code&scope=openid',
|
||||
logoutUrl: 'https://ciam.arbetsformedlingen.se/uas/logout',
|
||||
};
|
||||
|
||||
export const CIAM_MOCK: Ciam = {
|
||||
clientId: '',
|
||||
loginUrl: '/mock-login',
|
||||
logoutUrl: '/mock-login',
|
||||
};
|
||||
Reference in New Issue
Block a user