Skip to content

Commit

Permalink
OD-19199 Added Quote type
Browse files Browse the repository at this point in the history
  • Loading branch information
yuryyas committed Sep 4, 2024
1 parent 3efd0d7 commit f1d84aa
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions client-html/src/js/containers/automation/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,23 @@ export const AQL_ENTITIES = Object
export const AQL_ENTITY_ITEMS = AQL_ENTITIES.map(mapSelectItems);

export const MESSAGE_TEMPLATE_ENTITIES = stringLiterals(
"Application",
"Article",
"Contact",
"CourseClass",
"CourseClassTutor",
"Checkout",
"Enrolment",
"Invoice",
"Lead",
"Membership",
"PaymentIn",
"PaymentOut",
"Payslip",
"ProductItem",
"Voucher",
"WaitingList",
"Application",
"Article",
"Checkout",
"Contact",
"CourseClass",
"CourseClassTutor",
"Enrolment",
"Invoice",
"Lead",
"Membership",
"PaymentIn",
"PaymentOut",
"Payslip",
"ProductItem",
"Quote",
"Voucher",
"WaitingList"
);

export const MessageTemplateEntityItems = MESSAGE_TEMPLATE_ENTITIES.map(e => ({ label: e, value: e }));
Expand Down

0 comments on commit f1d84aa

Please sign in to comment.