Code cleanup.
This commit is contained in:
parent
e3f23d16eb
commit
dfd2b1893b
1 changed files with 1 additions and 7 deletions
|
@ -626,20 +626,14 @@ class TicketsController < ApplicationController
|
||||||
assets = attributes_to_change[:assets]
|
assets = attributes_to_change[:assets]
|
||||||
assets = ticket.assets(assets)
|
assets = ticket.assets(assets)
|
||||||
|
|
||||||
# get related articles
|
|
||||||
articles = Ticket::Article.where(ticket_id: ticket.id).order('created_at ASC, id ASC')
|
|
||||||
|
|
||||||
# get related users
|
# get related users
|
||||||
article_ids = []
|
article_ids = []
|
||||||
articles.each { |article|
|
ticket.articles.order('created_at ASC, id ASC').each { |article|
|
||||||
|
|
||||||
# ignore internal article if customer is requesting
|
# ignore internal article if customer is requesting
|
||||||
next if article.internal == true && current_user.permissions?('ticket.customer')
|
next if article.internal == true && current_user.permissions?('ticket.customer')
|
||||||
|
|
||||||
# load article ids
|
|
||||||
article_ids.push article.id
|
article_ids.push article.id
|
||||||
|
|
||||||
# load assets
|
|
||||||
assets = article.assets(assets)
|
assets = article.assets(assets)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue