@@ -126,6 +126,13 @@ module.exports = {
126126 TAAS_WORK_PERIOD_PAYMENT_UPDATE_TOPIC : process . env . TAAS_WORK_PERIOD_PAYMENT_UPDATE_TOPIC || 'taas.workperiodpayment.update' ,
127127 // the delete work period payment entity Kafka message topic
128128 TAAS_WORK_PERIOD_PAYMENT_DELETE_TOPIC : process . env . TAAS_WORK_PERIOD_PAYMENT_DELETE_TOPIC || 'taas.workperiodpayment.delete' ,
129+ // topics for interview service
130+ // the request interview Kafka message topic
131+ TAAS_INTERVIEW_REQUEST_TOPIC : process . env . TAAS_INTERVIEW_REQUEST_TOPIC || 'taas.interview.requested' ,
132+ // the interview update Kafka message topic
133+ TAAS_INTERVIEW_UPDATE_TOPIC : process . env . TAAS_INTERVIEW_UPDATE_TOPIC || 'taas.interview.update' ,
134+ // the interview bulk update Kafka message topic
135+ TAAS_INTERVIEW_BULK_UPDATE_TOPIC : process . env . TAAS_INTERVIEW_BULK_UPDATE_TOPIC || 'taas.interview.bulkUpdate' ,
129136
130137 // the Kafka message topic for sending email
131138 EMAIL_TOPIC : process . env . EMAIL_TOPIC || 'external.action.email' ,
@@ -135,10 +142,18 @@ module.exports = {
135142 // the emails address for receiving the issue report
136143 // REPORT_ISSUE_EMAILS may contain comma-separated list of email which is converted to array
137144 REQUEST_EXTENSION_EMAILS : ( process . env . REQUEST_EXTENSION_EMAILS || '' ) . split ( ',' ) ,
145+ // the emails address for interview invitation
146+ // INTERVIEW_INVITATION_CC_LIST may contain comma-separated list of email which is converted to array
147+ // scheduler@x .ai should be in the CC list
148+ INTERVIEW_INVITATION_CC_LIST :
( process . env . INTERVIEW_INVITATION_CC_LIST || '[email protected] ' ) . split ( ',' ) , 138149 // SendGrid email template ID for reporting issue
139150 REPORT_ISSUE_SENDGRID_TEMPLATE_ID : process . env . REPORT_ISSUE_SENDGRID_TEMPLATE_ID ,
140151 // SendGrid email template ID for requesting extension
141152 REQUEST_EXTENSION_SENDGRID_TEMPLATE_ID : process . env . REQUEST_EXTENSION_SENDGRID_TEMPLATE_ID ,
153+ // SendGrid email template ID for interview invitation
154+ INTERVIEW_INVITATION_SENDGRID_TEMPLATE_ID : process . env . INTERVIEW_INVITATION_SENDGRID_TEMPLATE_ID ,
155+ // The sender (aka `from`) email for invitation.
156+ INTERVIEW_INVITATION_SENDER_EMAIL : process . env . INTERVIEW_INVITATION_SENDER_EMAIL ,
142157 // the URL where TaaS App is hosted
143158 TAAS_APP_URL : process . env . TAAS_APP_URL || 'https://platform.topcoder-dev.com/taas/myteams' ,
144159 // environment variables for Payment Service
0 commit comments