Merge pull request #86 in TEA/mina-sidor-fa-web from feature/acc-deployment to develop
Squashed commit of the following: commit b80896487554d90ed95c1a93596e2f3330202983 Author: Erik Tiekstra <erik.tiekstra@arbetsformedlingen.se> Date: Fri Sep 10 10:45:07 2021 +0200 Added deployment for acc
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
export interface Environment {
|
||||
environment: 'api' | 'local' | 'prod';
|
||||
environment: 'api' | 'local' | 'acc' | 'prod';
|
||||
clientId: string;
|
||||
loginUrl: string;
|
||||
logoutUrl: string;
|
||||
|
||||
13
apps/mina-sidor-fa/src/environments/environment.acc.ts
Normal file
13
apps/mina-sidor-fa/src/environments/environment.acc.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { Environment } from '@msfa-models/environment.model';
|
||||
|
||||
export const environment: Environment = {
|
||||
environment: 'acc',
|
||||
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',
|
||||
production: true,
|
||||
api: {
|
||||
url: '/api',
|
||||
headers: {},
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user