Skip to content

Commit 9d7c4b2

Browse files
Merge pull request #702 from topcoder-platform/develop
Self service prod release
2 parents f5d4c63 + 82459aa commit 9d7c4b2

39 files changed

+15880
-437
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ dist
77
.ebextensions
88
.elasticbeanstalk
99
coverage
10+
docs

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -367,3 +367,4 @@ It's been signed with the secret 'secret'. This secret should match your entry i
367367
- [Permissions Guide](https://github.com/topcoder-platform/tc-project-service/blob/develop/docs/guides/permissions-guide/permissions-guide.md) - what kind of permissions we have, how they work and how to use them.
368368
- [Permissions](https://htmlpreview.github.io/?https://github.com/topcoder-platform/tc-project-service/blob/develop/docs/permissions.html) - the list of all permissions in Project Service.
369369
- [Swagger API Definition](http://editor.swagger.io/?url=https://raw.githubusercontent.com/topcoder-platform/tc-project-service/develop/docs/swagger.yaml) - click to open it via Online Swagger Editor.
370+
- [Customer Payments](./docs/guides/customer-payments/README.md) - Customer Payments API details.

config/custom-environment-variables.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
"timelineDocType": "TIMELINES_ES_DOC_TYPE",
1616
"metadataIndexName": "METADATA_ES_INDEX_NAME",
1717
"metadataDocType": "METADATA_ES_DOC_TYPE",
18-
"metadataDocDefaultId": "METADATA_ES_DOC_DEFAULT_ID"
18+
"metadataDocDefaultId": "METADATA_ES_DOC_DEFAULT_ID",
19+
"customerPaymentIndexName": "CUSTOMER_PAYMENTS_ES_INDEX_NAME",
20+
"customerPaymentDocType": "CUSTOMER_PAYMENT_ES_DOC_TYPE"
1921
},
2022
"pubsubQueueName": "PUBSUB_QUEUE_NAME",
2123
"pubsubExchangeName": "PUBSUB_EXCHANGE_NAME",
@@ -76,5 +78,6 @@
7678
"CLIENT_KEY": "SALESFORCE_CLIENT_KEY",
7779
"SUBJECT": "SALESFORCE_SUBJECT",
7880
"CLIENT_ID": "SALESFORCE_CLIENT_ID"
79-
}
81+
},
82+
"STRIPE_SECRET_KEY": "STRIPE_SECRET_KEY"
8083
}

config/default.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
"timelineDocType": "doc",
2626
"metadataIndexName": "metadata",
2727
"metadataDocType": "doc",
28-
"metadataDocDefaultId": 1
28+
"metadataDocDefaultId": 1,
29+
"customerPaymentIndexName": "customer_payments",
30+
"customerPaymentDocType": "doc"
2931
},
3032
"connectProjectUrl": "",
3133
"dbConfig": {
@@ -83,5 +85,6 @@
8385
"SUBJECT": "",
8486
"CLIENT_ID": ""
8587
},
88+
"STRIPE_SECRET_KEY": "",
8689
"sfdcBillingAccountNameField": "Billing_Account_Name__c"
8790
}

config/test.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
"timelineIndexName": "timelines_test",
1414
"timelineDocType": "doc",
1515
"metadataIndexName": "metadata_test",
16-
"metadataDocType": "doc"
16+
"metadataDocType": "doc",
17+
"customerPaymentIndexName": "customer_payments_test",
18+
"customerPaymentDocType": "doc"
1719
},
1820
"connectProjectsUrl": "https://local.topcoder-dev.com/projects/",
1921
"dbConfig": {

0 commit comments

Comments
 (0)