Merge branch '661-yokohama-add-source-of-awareness-dropdown-and-related-remarks-field-to-ticket-and-jo' into 'master'

Add Referral to source of awareness dropdown. #661

Closes #661

See merge request jankstudio/resq!775
This commit is contained in:
Kendrick Chan 2022-04-29 05:05:08 +00:00
commit 4c67d59b22

View file

@ -11,6 +11,7 @@ class SourceOfAwareness extends NameValue
const FLYERS = 'flyers';
const WORD_OF_MOUTH = 'word_of_mouth';
const OTHER = 'other';
const REFERRAL = 'referral';
const COLLECTION = [
'facebook' => 'Facebook',
@ -19,6 +20,7 @@ class SourceOfAwareness extends NameValue
'tarp_ads' => 'Tarp Ads',
'flyers' => 'Flyers',
'word_of_mouth' => 'Word of Mouth',
'referral' => 'Referral',
'other' => 'Other',
];
}