Moved to ne generic params.
This commit is contained in:
parent
e56ed8eeca
commit
30acbec315
1 changed files with 3 additions and 3 deletions
|
@ -183,7 +183,7 @@ returns
|
||||||
Transaction::BackgroundJob.run(
|
Transaction::BackgroundJob.run(
|
||||||
object: 'Ticket',
|
object: 'Ticket',
|
||||||
type: 'reminder_reached',
|
type: 'reminder_reached',
|
||||||
ticket_id: ticket.id,
|
object_id: ticket.id,
|
||||||
article_id: ticket.articles.last.id,
|
article_id: ticket.articles.last.id,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -223,7 +223,7 @@ returns
|
||||||
Transaction::BackgroundJob.run(
|
Transaction::BackgroundJob.run(
|
||||||
object: 'Ticket',
|
object: 'Ticket',
|
||||||
type: 'escalation',
|
type: 'escalation',
|
||||||
ticket_id: ticket.id,
|
object_id: ticket.id,
|
||||||
article_id: ticket.articles.last.id,
|
article_id: ticket.articles.last.id,
|
||||||
)
|
)
|
||||||
result.push ticket
|
result.push ticket
|
||||||
|
@ -234,7 +234,7 @@ returns
|
||||||
Transaction::BackgroundJob.run(
|
Transaction::BackgroundJob.run(
|
||||||
object: 'Ticket',
|
object: 'Ticket',
|
||||||
type: 'escalation_warning',
|
type: 'escalation_warning',
|
||||||
ticket_id: ticket.id,
|
object_id: ticket.id,
|
||||||
article_id: ticket.articles.last.id,
|
article_id: ticket.articles.last.id,
|
||||||
)
|
)
|
||||||
result.push ticket
|
result.push ticket
|
||||||
|
|
Loading…
Reference in a new issue