@@ -113,7 +113,7 @@ module.exports = {
113
113
// the delete resource booking entity Kafka message topic
114
114
TAAS_RESOURCE_BOOKING_DELETE_TOPIC : process . env . TAAS_RESOURCE_BOOKING_DELETE_TOPIC || 'taas.resourcebooking.delete' ,
115
115
// topics for work period service
116
- // the create rwork period entity Kafka message topic
116
+ // the create work period entity Kafka message topic
117
117
TAAS_WORK_PERIOD_CREATE_TOPIC : process . env . TAAS_WORK_PERIOD_CREATE_TOPIC || 'taas.workperiod.create' ,
118
118
// the update work period entity Kafka message topic
119
119
TAAS_WORK_PERIOD_UPDATE_TOPIC : process . env . TAAS_WORK_PERIOD_UPDATE_TOPIC || 'taas.workperiod.update' ,
@@ -133,5 +133,11 @@ module.exports = {
133
133
// SendGrid email template ID for requesting extension
134
134
REQUEST_EXTENSION_SENDGRID_TEMPLATE_ID : process . env . REQUEST_EXTENSION_SENDGRID_TEMPLATE_ID ,
135
135
// the URL where TaaS App is hosted
136
- TAAS_APP_URL : process . env . TAAS_APP_URL || 'https://platform.topcoder-dev.com/taas/myteams'
136
+ TAAS_APP_URL : process . env . TAAS_APP_URL || 'https://platform.topcoder-dev.com/taas/myteams' ,
137
+ // default time zone for Work Periods
138
+ WORK_PERIOD_TIME_ZONE : process . env . WORK_PERIOD_TIME_ZONE || 'America/New_York' ,
139
+ // maximum start date of resource bookings when populating work periods from existing resource bookings in migration script
140
+ MAX_START_DATE : process . env . MAX_START_DATE || '2100-12-31' ,
141
+ // maximum end date of resource bookings when populating work periods from existing resource bookings in migration script
142
+ MAX_END_DATE : process . env . MAX_END_DATE || '2100-12-31'
137
143
}
0 commit comments