Applied Zammad default behaviour if no title is given.
This commit is contained in:
parent
97431be8d6
commit
ab33cd491d
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ module Import
|
|||
|
||||
{
|
||||
id: ticket.id,
|
||||
title: ticket.subject || ticket.description || "No title",
|
||||
title: ticket.subject || ticket.description || '-',
|
||||
owner_id: Import::Zendesk::UserFactory.local_id( ticket.assignee ) || 1,
|
||||
note: ticket.description,
|
||||
group_id: Import::Zendesk::GroupFactory.local_id( ticket.group_id ) || 1,
|
||||
|
|
Loading…
Reference in a new issue