Skip to content

Commit f98c9c1

Browse files
committed
feat: update onboarding checklist if regSource does not require onboarding flow
1 parent dc98d06 commit f98c9c1

File tree

7 files changed

+5097
-60
lines changed

7 files changed

+5097
-60
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ workflows:
5757
context : org-global
5858
filters:
5959
branches:
60-
only: [ "dev", "dev-circleci" ]
60+
only: [ "dev", "dev-circleci", 'feat/onboard-flow-based-on-reg-source' ]
6161
- "build-prod":
6262
context : org-global
6363
filters:

config/default.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,10 @@ module.exports = {
3232
USER_STATES: {
3333
ACTIVE: process.env.USER_ACTIVE_STATE || 'ACTIVE',
3434
UNVERIFIED: process.env.USER_UNVERIFIED_STATE || 'UNVERIFIED'
35-
}
35+
},
36+
37+
MEMBERS_API_URL: process.env.MEMBERS_API_URL || 'https://api.topcoder-dev.com/v5/members',
38+
39+
// List of registration sources that can skip the onboarding wizard
40+
SKIP_ONBOARDING_REG_SOURCES: process.env.SKIP_ONBOARDING_REG_SOURCES || ['taasApp']
3641
}

0 commit comments

Comments
 (0)