Skip to content

[DEV] Milestone Management #657

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 27 commits into from
Aug 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
1bccaa1
phase members
eisbilir Jul 18, 2021
3646aef
Adding support to store linking between copilots and phases (aka mile…
tasqat Jul 19, 2021
e1830cb
Merge pull request #656 from eisbilir/milestone-team-management
elkhawajah Jul 20, 2021
61363cd
trigger CI Build
tasqat Jul 25, 2021
3c6f384
fix: phase member test spec
eisbilir Jul 25, 2021
f6c0657
Merge pull request #658 from eisbilir/feature/new-milestone-concept
elkhawajah Jul 27, 2021
4f5152c
update: phase member details
eisbilir Jul 27, 2021
a7e6990
Merge pull request #659 from eisbilir/feature/new-milestone-concept
elkhawajah Jul 28, 2021
7f02ec1
updated script to include sequence creation and removed 'public' schema
tasqat Jul 28, 2021
72d79bd
update: phase update will return members
eisbilir Jul 29, 2021
fc7c959
update: use 100 for maxPhaseProductCount
eisbilir Jul 29, 2021
1a2e995
Merge pull request #660 from eisbilir/feature/new-milestone-concept
elkhawajah Jul 29, 2021
3fe176e
allow update phase members with create-update phase
eisbilir Jul 29, 2021
9237cb8
use transaction
eisbilir Jul 30, 2021
64d0c41
Merge pull request #662 from eisbilir/feature/new-milestone-concept
elkhawajah Aug 2, 2021
d42095f
fix: phase member tests
eisbilir Aug 2, 2021
56dd1b0
Merge pull request #663 from eisbilir/feature/new-milestone-concept
elkhawajah Aug 2, 2021
e289b5c
adding phase approval api
eisbilir Aug 3, 2021
60b674e
make phase validation dates optional
eisbilir Aug 3, 2021
75ec578
Merge pull request #664 from eisbilir/feature/new-milestone-concept
elkhawajah Aug 4, 2021
087e378
update phase status
eisbilir Aug 4, 2021
9ef86a7
update postman tests
eisbilir Aug 4, 2021
7a73858
Merge pull request #665 from eisbilir/feature/new-milestone-concept
elkhawajah Aug 4, 2021
8114e13
fix: product delete sync with ES
eisbilir Aug 5, 2021
b5861e7
Merge pull request #666 from eisbilir/feature/new-milestone-concept
elkhawajah Aug 5, 2021
3658402
fix: phase approval migration script
eisbilir Aug 7, 2021
1d2fa8f
Merge pull request #667 from eisbilir/feature/new-milestone-concept
elkhawajah Aug 7, 2021
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
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ workflows:
- UnitTests
filters:
branches:
only: ['develop', 'connect-performance-testing', 'feature/shapeup_billing_accounts_protections']
only: ['develop', 'connect-performance-testing', 'feature/new-milestone-concept']
- deployProd:
context : org-global
requires:
Expand Down
14 changes: 7 additions & 7 deletions config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
"metadataDocType": "doc",
"metadataDocDefaultId": 1
},
"connectProjectUrl":"",
"connectProjectUrl": "",
"dbConfig": {
"masterUrl": "",
"masterUrl": "postgres://coder:mysecretpassword@localhost:5432/projectsdb",
"maxPoolSize": 50,
"minPoolSize": 4,
"idleTimeout": 1000
Expand All @@ -45,14 +45,14 @@
"messageApiUrl": "http://api.topcoder-dev.com/v5",
"busApiToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJuYW1lIjoicHJvamVjdC1zZXJ2aWNlIiwiaWF0IjoxNTEyNzQ3MDgyLCJleHAiOjE1MjEzODcwODJ9.PHuNcFDaotGAL8RhQXQMdpL8yOKXxjB5DbBIodmt7RE",
"HEALTH_CHECK_URL": "_health",
"maxPhaseProductCount": 1,
"maxPhaseProductCount": 100,
"TOKEN_CACHE_TIME": "86000",
"whitelistedOriginsForUserIdAuth": "[\"https:\/\/topcoder-newauth.auth0.com\/\",\"https:\/\/api.topcoder-dev.com\"]",
"EMAIL_INVITE_FROM_NAME":"Topcoder",
"EMAIL_INVITE_FROM_EMAIL":"noreply@connect.topcoder.com",
"EMAIL_INVITE_FROM_NAME": "Topcoder",
"EMAIL_INVITE_FROM_EMAIL": "noreply@connect.topcoder.com",
"inviteEmailSubject": "You are invited to Topcoder",
"inviteEmailSectionTitle": "Project Invitation",
"connectUrl":"https://connect.topcoder-dev.com",
"connectUrl": "https://connect.topcoder-dev.com",
"accountsAppUrl": "https://accounts.topcoder-dev.com",
"MAX_REVISION_NUMBER": 100,
"UNIQUE_GMAIL_VALIDATION": false,
Expand Down Expand Up @@ -84,4 +84,4 @@
"CLIENT_ID": ""
},
"sfdcBillingAccountNameField": "Billing_Account_Name__c"
}
}
Loading