Add empty line after access modifier

Rubocop was complaining about Layout/EmptyLinesAroundAccessModifier in
the tags controller.

This issue was introduced in commit e76735031. Unfortunately, it looks
like Pronto doesn't detect this issue because the access modifier was
already there; only the lines below it were introduced in that pull
request.
This commit is contained in:
Javi Martín
2022-06-13 16:11:24 +02:00
parent 7e663f8bcf
commit f5de0a6102

View File

@@ -26,6 +26,7 @@ class Admin::TagsController < Admin::BaseController
end end
private private
def tags def tags
@tags ||= Tag.category.page(params[:page]) @tags ||= Tag.category.page(params[:page])
end end