Layout/DotPosition:
Enabled: false
-# Cop supports --auto-correct.
-Layout/ElseAlignment:
- Exclude:
- - 'app/helpers/attachments_helper.rb'
-
# Cop supports --auto-correct.
Layout/EmptyLineAfterGuardClause:
Enabled: false
# :thumbails -- display thumbnails if enabled in settings
def link_to_attachments(container, options = {})
options.assert_valid_keys(:author, :thumbnails)
-
- attachments = if container.attachments.loaded?
- container.attachments
- else
- container.attachments.preload(:author).to_a
- end
-
+ attachments =
+ if container.attachments.loaded?
+ container.attachments
+ else
+ container.attachments.preload(:author).to_a
+ end
if attachments.any?
options = {
:editable => container.attachments_editable?,