-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver-configs.ts
More file actions
46 lines (45 loc) · 1.26 KB
/
server-configs.ts
File metadata and controls
46 lines (45 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
* Copyright (c) 2025 Ping Identity Corporation. All rights reserved.
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
import type { JourneyClientConfig } from '@forgerock/journey-client/types';
export const serverConfigs: Record<string, JourneyClientConfig> = {
UsernamePassword: {
serverConfig: {
baseUrl: 'https://openam-sdks.forgeblocks.com/am/',
},
realmPath: '/alpha',
},
['TEST_WebAuthn-Registration']: {
serverConfig: {
baseUrl: 'https://openam-sdks.forgeblocks.com/am/',
},
realmPath: '/alpha',
},
['TEST_WebAuthnAuthentication_UsernamePassword']: {
serverConfig: {
baseUrl: 'https://openam-sdks.forgeblocks.com/am/',
},
realmPath: '/alpha',
},
['TEST_WebAuthnAuthentication']: {
serverConfig: {
baseUrl: 'https://openam-sdks.forgeblocks.com/am/',
},
realmPath: '/alpha',
},
['TEST_WebAuthn-Registration-UsernameToDevice']: {
serverConfig: {
baseUrl: 'https://openam-sdks.forgeblocks.com/am/',
},
realmPath: '/alpha',
},
['TEST_WebAuthnAuthentication_Usernameless']: {
serverConfig: {
baseUrl: 'https://openam-sdks.forgeblocks.com/am/',
},
realmPath: '/alpha',
},
};