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
20 lines
692 B
TypeScript
20 lines
692 B
TypeScript
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',
|
|
};
|