Most of the domain setup dialog bits are done

This commit is contained in:
Johannes Zellner
2025-01-28 21:25:12 +01:00
parent f990095ddf
commit fd3bb37c48
4 changed files with 397 additions and 10 deletions
+12
View File
@@ -91,6 +91,16 @@ const TOKEN_TYPES = {
ID_SDK: 'cid-sdk', // created by user via dashboard
};
const ENDPOINTS_OVH = [
{ name: 'OVH Europe', value: 'ovh-eu' },
{ name: 'OVH US', value: 'ovh-us' },
{ name: 'OVH North-America', value: 'ovh-ca' },
{ name: 'SoYouStart Europe', value: 'soyoustart-eu' },
{ name: 'SoYouStart North-America', value: 'soyoustart-ca' },
{ name: 'Kimsufi Europe', value: 'kimsufi-eu' },
{ name: 'Kimsufi North-America', value: 'kimsufi-ca' },
];
// named exports
export {
APP_TYPES,
@@ -102,6 +112,7 @@ export {
TASK_TYPES,
PROXY_APP_ID,
TOKEN_TYPES,
ENDPOINTS_OVH,
};
// default export
@@ -115,4 +126,5 @@ export default {
TASK_TYPES,
PROXY_APP_ID,
TOKEN_TYPES,
ENDPOINTS_OVH,
};