Skip to content

Commit 8f570bc

Browse files
elkhawajaheisbilirtasqatRishiRajSahu
authored
[DEV] Milestone Management (#657) (#671)
* phase members * Adding support to store linking between copilots and phases (aka milestones in the new concept) Added cross ref table and CRUD api endpoints * fix: phase member test spec * update: phase member details * updated script to include sequence creation and removed 'public' schema * update: phase update will return members * update: use 100 for maxPhaseProductCount * allow update phase members with create-update phase * use transaction * fix: phase member tests * adding phase approval api * make phase validation dates optional * update phase status * update postman tests * fix: product delete sync with ES * fix: phase approval migration script Co-authored-by: eisbilir <[email protected]> Co-authored-by: Ahmad Alkhawaja <[email protected]> Co-authored-by: eisbilir <[email protected]> Co-authored-by: Ahmad Alkhawaja <[email protected]> Co-authored-by: Rishiraj Sahu <[email protected]>
1 parent cfddb85 commit 8f570bc

38 files changed

+5551
-2521
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ workflows:
152152
- UnitTests
153153
filters:
154154
branches:
155-
only: ['develop', 'connect-performance-testing', 'feature/shapeup_billing_accounts_protections']
155+
only: ['develop', 'connect-performance-testing', 'feature/new-milestone-concept']
156156
- deployProd:
157157
context : org-global
158158
requires:

config/default.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
"metadataDocType": "doc",
2828
"metadataDocDefaultId": 1
2929
},
30-
"connectProjectUrl":"",
30+
"connectProjectUrl": "",
3131
"dbConfig": {
32-
"masterUrl": "",
32+
"masterUrl": "postgres://coder:mysecretpassword@localhost:5432/projectsdb",
3333
"maxPoolSize": 50,
3434
"minPoolSize": 4,
3535
"idleTimeout": 1000
@@ -45,14 +45,14 @@
4545
"messageApiUrl": "http://api.topcoder-dev.com/v5",
4646
"busApiToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYW1lIjoicHJvamVjdC1zZXJ2aWNlIiwiaWF0IjoxNTEyNzQ3MDgyLCJleHAiOjE1MjEzODcwODJ9.PHuNcFDaotGAL8RhQXQMdpL8yOKXxjB5DbBIodmt7RE",
4747
"HEALTH_CHECK_URL": "_health",
48-
"maxPhaseProductCount": 1,
48+
"maxPhaseProductCount": 100,
4949
"TOKEN_CACHE_TIME": "86000",
5050
"whitelistedOriginsForUserIdAuth": "[\"https:\/\/topcoder-newauth.auth0.com\/\",\"https:\/\/api.topcoder-dev.com\"]",
51-
"EMAIL_INVITE_FROM_NAME":"Topcoder",
52-
"EMAIL_INVITE_FROM_EMAIL":"[email protected]",
51+
"EMAIL_INVITE_FROM_NAME": "Topcoder",
52+
"EMAIL_INVITE_FROM_EMAIL": "[email protected]",
5353
"inviteEmailSubject": "You are invited to Topcoder",
5454
"inviteEmailSectionTitle": "Project Invitation",
55-
"connectUrl":"https://connect.topcoder-dev.com",
55+
"connectUrl": "https://connect.topcoder-dev.com",
5656
"accountsAppUrl": "https://accounts.topcoder-dev.com",
5757
"MAX_REVISION_NUMBER": 100,
5858
"UNIQUE_GMAIL_VALIDATION": false,
@@ -84,4 +84,4 @@
8484
"CLIENT_ID": ""
8585
},
8686
"sfdcBillingAccountNameField": "Billing_Account_Name__c"
87-
}
87+
}

0 commit comments

Comments
 (0)