Merge pull request #3160 from consul/backport-1784-consistency_remove_semicolon_from_controllers
[Backport] Remove semicolons from controllers
This commit is contained in:
@@ -2,7 +2,8 @@ class Admin::BudgetPhasesController < Admin::BaseController
|
||||
|
||||
before_action :load_phase, only: [:edit, :update]
|
||||
|
||||
def edit; end
|
||||
def edit
|
||||
end
|
||||
|
||||
def update
|
||||
if @phase.update(budget_phase_params)
|
||||
|
||||
@@ -3,7 +3,8 @@ class GraphqlController < ApplicationController
|
||||
skip_before_action :verify_authenticity_token
|
||||
skip_authorization_check
|
||||
|
||||
class QueryStringError < StandardError; end
|
||||
class QueryStringError < StandardError
|
||||
end
|
||||
|
||||
def query
|
||||
begin
|
||||
|
||||
Reference in New Issue
Block a user