Project

General

Profile

1
export const environment = {
2
  production: true,
3
  staging: false,
4
  enableGlobalErrorToast: false,
5
  baseApiUrl: 'https://GX-ZWEVKZUDILBT2-P001.pwcglb.com',
6
  apiUrl: {
7
    configurationWs: '/configuration-ws',
8
    documentsProcessesWs: '/documents-processes-ws',
9
    verificationRulesWs: '/verification-rules-ws',
10
    usersWs: '/users-ws'
11
  },
12
  defaultLanguage: 'en',
13
  languages: [
14
    {
15
      code: 'en',
16
      name: 'English'
17
    },
18
    {
19
      code: 'el',
20
      name: 'Ελληνικά'
21
    }
22
  ],
23
  oAuth2: {
24
    serverUrl: 'https://login.pwc.com:443/openam/oauth2/',
25
    issuerUrl: 'https://login.pwc.com:443/openam/oauth2',
26
    realmName: '',
27
    redirectUri: 'https://rtaprod.cy.ema.ad.pwcinternal.com',
28
    clientId: 'URN:CY_RTA_PROD',
29
    // Scope for the permissions the client should request
30
    scope: 'profile email cloudEmail uid preferredMail',
31
    // Set this to "true" if you want automatic redirection to OAuth2 login to happen when user visits any page as anonymous,
32
    // without manually clicking 'login'.
33
    autoLogin: true
34
  },
35
  globalRightsClientID: 'PWC',
36
  dashboardSelectedIpowerClientsStorageTime: 432000000 //5 day in miliseconds
37
};
(3-3/5)