Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Commit

Permalink
Refatoração. Criação e aplicação do método crup2.
Browse files Browse the repository at this point in the history
  • Loading branch information
diazv committed Jun 20, 2019
1 parent e20e791 commit 300f257
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
9 changes: 9 additions & 0 deletions app/controllers/application_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,12 @@ def crup(tipoInfo, metodoExec, estadoInfo, renderElse)
end
end
end

def crup2(tipoInfo, metodoExec, renderField)
if metodoExec
redirect_to tipoInfo
else
render renderField
end
end

13 changes: 2 additions & 11 deletions app/controllers/produtos_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ def new

def create
@produto = Produto.new(produto_params)
if @produto.save
redirect_to @produto
else
render 'new'
end
crup2(@produto, @produto.save, 'new')
end

def show
Expand All @@ -26,12 +22,7 @@ def edit

def update
@produto = Produto.find(params[:id])

if @produto.update(produto_params)
redirect_to @produto
else
render 'edit'
end
crup2(@produto, @produto.update(produto_params), 'edit')
end

def destroy
Expand Down

0 comments on commit 300f257

Please sign in to comment.