Skip to content

Commit

Permalink
Fix enums in account-mailer so they match sbc-common
Browse files Browse the repository at this point in the history
  • Loading branch information
seeker25 committed May 16, 2024
1 parent 34f6f29 commit 7dd6a43
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions queue_services/account-mailer/src/account_mailer/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ class SubjectType(Enum):
MEMBERSHIP_APPROVED_NOTIFICATION = '[BC Registries and Online Services] Welcome to the account {account_name}'
MEMBERSHIP_APPROVED_NOTIFICATION_FOR_BCEID = '[BC Registries and Online Services] Welcome to the account ' \
'{account_name}'
NONBCSC_ORG_APPROVED_NOTIFICATION = '[BC Registries and Online Services] APPROVED Business Registry Account'
NONBCSC_ORG_REJECTED_NOTIFICATION = '[BC Registries and Online Services] YOUR ACTION REQUIRED: ' \
NON_BCSC_ORG_APPROVED_NOTIFICATION = '[BC Registries and Online Services] APPROVED Business Registry Account'
NON_BCSC_ORG_REJECTED_NOTIFICATION = '[BC Registries and Online Services] YOUR ACTION REQUIRED: ' \
'Business Registry Account cannot be approved'
OTP_AUTHENTICATOR_RESET_NOTIFICATION = '[BC Registries and Online Services] Authenticator Has Been Reset'
ROLE_CHANGED_NOTIFICATION = '[BC Registries and Online Services] Your Role Has Been Changed'
Expand Down Expand Up @@ -86,8 +86,8 @@ class TitleType(Enum):
GOVM_MEMBER_INVITATION = 'Invitation to Join an Account at Business Registry'
MEMBERSHIP_APPROVED_NOTIFICATION = 'Your Membership Has Been Approved'
MEMBERSHIP_APPROVED_NOTIFICATION_FOR_BCEID = 'Your Membership Has Been Approved'
NONBCSC_ORG_APPROVED_NOTIFICATION = 'Your Membership Has Been Approved'
NONBCSC_ORG_REJECTED_NOTIFICATION = 'Your Membership Has Been Rejected'
NON_BCSC_ORG_APPROVED_NOTIFICATION = 'Your Membership Has Been Approved'
NON_BCSC_ORG_REJECTED_NOTIFICATION = 'Your Membership Has Been Rejected'
OTP_AUTHENTICATOR_RESET_NOTIFICATION = 'Your Authenticator Has Been Reset'
ROLE_CHANGED_NOTIFICATION = 'Your Role Has Been Changed'
STAFF_REVIEW_ACCOUNT = 'Notification from Business Registry'
Expand Down Expand Up @@ -130,8 +130,8 @@ class TemplateType(Enum):
GOVM_MEMBER_INVITATION_TEMPLATE_NAME = 'govm_member_invitation_email'
MEMBERSHIP_APPROVED_NOTIFICATION_TEMPLATE_NAME = 'membership_approved_notification_email'
MEMBERSHIP_APPROVED_NOTIFICATION_FOR_BCEID_TEMPLATE_NAME = 'membership_approved_notification_email_for_bceid'
NONBCSC_ORG_APPROVED_NOTIFICATION_TEMPLATE_NAME = 'nonbcsc_org_approved_notification_email'
NONBCSC_ORG_REJECTED_NOTIFICATION_TEMPLATE_NAME = 'nonbcsc_org_rejected_notification_email'
NON_BCSC_ORG_APPROVED_NOTIFICATION_TEMPLATE_NAME = 'nonbcsc_org_approved_notification_email'
NON_BCSC_ORG_REJECTED_NOTIFICATION_TEMPLATE_NAME = 'nonbcsc_org_rejected_notification_email'
OTP_AUTHENTICATOR_RESET_NOTIFICATION_TEMPLATE_NAME = 'otp_authenticator_reset_notification_email'
ROLE_CHANGED_NOTIFICATION_TEMPLATE_NAME = 'role_changed_notification_email'
STAFF_REVIEW_ACCOUNT_TEMPLATE_NAME = 'staff_review_account_email'
Expand Down

0 comments on commit 7dd6a43

Please sign in to comment.