Remove unnecessary parens

This commit is contained in:
Jose Farias
2024-10-22 10:49:08 -06:00
parent 6a9ffe3103
commit 79670c04c3
2 changed files with 2 additions and 2 deletions
@@ -31,6 +31,6 @@ class Workflows::StagesController < ApplicationController
end
def stage_params
params.expect(workflow_stage: [ :name ])
params.expect workflow_stage: [ :name ]
end
end
+1 -1
View File
@@ -38,6 +38,6 @@ class WorkflowsController < ApplicationController
end
def workflow_params
params.expect(workflow: [ :name ])
params.expect workflow: [ :name ]
end
end