Add resq inquiry ticket type #162

This commit is contained in:
Kendrick Chan 2018-09-23 15:53:38 +08:00
parent 268f06c88d
commit 89d6949015

View file

@ -10,6 +10,7 @@ class TicketType extends NameValue
const BILLING = 'billing';
const OTHER = 'other';
const FOR_FOLLOW_UP = 'for_follow_up';
const RESQ_INQUIRY = 'resq_inquiry';
const COLLECTION = [
'complaint' => 'Complaint',
@ -18,6 +19,6 @@ class TicketType extends NameValue
'billing' => 'Billing',
'other' => 'Other',
'for_follow_up' => 'For follow-up',
'resq_inquiry' => 'RESQ Inquiry',
];
}