Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions packages/core/src/domain/configuration/intakeSites.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
// fixme site list修改
export type Site = 'browser.flashcat.cloud' | 'http://10.99.1.110:11300' // fixme later
export type Site = string

export const INTAKE_SITE_STAGING: Site = 'http://10.99.1.110:11300' as Site
export const INTAKE_SITE_FED_STAGING: Site = 'http://10.99.1.110:11300' as Site
// Internal staging intake host. Public https domain (no internal IP / cleartext
// endpoint), consistent with the native SDKs: Android FlashcatSite.STAGING and
// iOS FlashcatSite.staging both map staging to `jira.flashcat.cloud`.
export const INTAKE_SITE_STAGING: Site = 'jira.flashcat.cloud'
export const INTAKE_SITE_FED_STAGING: Site = 'jira.flashcat.cloud'
export const INTAKE_SITE_US1: Site = 'browser.flashcat.cloud'
export const INTAKE_SITE_EU1: Site = 'browser.flashcat.cloud'
export const INTAKE_SITE_US1_FED: Site = 'browser.flashcat.cloud'
Expand Down
Loading