# SupportedStyles: space, no_space
Layout/SpaceInsideParens:
Exclude:
- - 'app/controllers/application_controller.rb'
- 'app/helpers/issues_helper.rb'
- 'app/models/auth_source_ldap.rb'
- 'app/models/repository/cvs.rb'
def find_attachments
if (attachments = params[:attachments]).present?
att = attachments.values.collect do |attachment|
- Attachment.find_by_token( attachment[:token] ) if attachment[:token].present?
+ Attachment.find_by_token(attachment[:token]) if attachment[:token].present?
end
att.compact!
end