Fixed issue #1153 - Using Zendesk basic priority feature breakes import.
This commit is contained in:
parent
017022eae9
commit
6a98b5a41d
1 changed files with 8 additions and 7 deletions
|
@ -5,13 +5,14 @@ module Import
|
|||
extend Import::Zendesk::LocalIDMapperHook
|
||||
|
||||
MAPPING = {
|
||||
'subject' => 'title',
|
||||
'description' => 'note',
|
||||
'status' => 'state_id',
|
||||
'tickettype' => 'type',
|
||||
'priority' => 'priority_id',
|
||||
'group' => 'group_id',
|
||||
'assignee' => 'owner_id',
|
||||
'subject' => 'title',
|
||||
'description' => 'note',
|
||||
'status' => 'state_id',
|
||||
'tickettype' => 'type',
|
||||
'priority' => 'priority_id',
|
||||
'basic_priority' => 'priority_id',
|
||||
'group' => 'group_id',
|
||||
'assignee' => 'owner_id',
|
||||
}.freeze
|
||||
|
||||
# rubocop:disable Style/ModuleFunction
|
||||
|
|
Loading…
Reference in a new issue