Add and apply MultilineMethodCallIndentation rule

This commit is contained in:
Javi Martín
2023-07-01 18:08:54 +02:00
parent 629e208e9d
commit 5b6de96241
35 changed files with 131 additions and 110 deletions

View File

@@ -10,8 +10,11 @@ class Legislation::ProcessesController < Legislation::BaseController
def index
@current_filter ||= "open"
@processes = ::Legislation::Process.send(@current_filter).published
.not_in_draft.order(start_date: :desc).page(params[:page])
@processes = ::Legislation::Process.send(@current_filter)
.published
.not_in_draft
.order(start_date: :desc)
.page(params[:page])
end
def show