From 0102761ff75ef95661a4020fa81a6cb6d2143793 Mon Sep 17 00:00:00 2001 From: Tasos Katsoulas Date: Tue, 21 Sep 2021 18:44:03 +0300 Subject: [PATCH] Update form fields to match Zendesk. --- kitsune/customercare/zendesk.py | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/kitsune/customercare/zendesk.py b/kitsune/customercare/zendesk.py index 25abaeae9..77557003c 100644 --- a/kitsune/customercare/zendesk.py +++ b/kitsune/customercare/zendesk.py @@ -8,18 +8,21 @@ from zenpy.lib.api_objects import User as ZendeskUser # See docs/zendesk.md for details about getting the valid choice values for each field: CATEGORY_CHOICES = [ (None, _lazy("Select a topic")), - ("technical", _lazy("Technical")), + ("payment", _lazy("Payments & Billing")), ("accounts", _lazy("Accounts & Login")), - ("payments", _lazy("Payment & Billing")), - ("troubleshooting", _lazy("Troubleshooting")), + ("technical", _lazy("Technical")), + ("feedback", _lazy("Provide Feedback/Request Features")), + ("not_listed", _lazy("Not listed")), ] OS_CHOICES = [ (None, _lazy("Select platform")), ("win10", _lazy("Windows")), - ("android", _lazy("Android")), - ("linux", _lazy("Linux")), ("mac", _lazy("Mac OS")), + ("linux", _lazy("Linux")), + ("android", _lazy("Android")), + ("ios", _lazy("iOS")), + ("other", _lazy("Other")), ]