diff options
Diffstat (limited to 'app/controllers/boards_controller.rb')
-rw-r--r-- | app/controllers/boards_controller.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/app/controllers/boards_controller.rb b/app/controllers/boards_controller.rb index b5bce0c6a..e4d7749bc 100644 --- a/app/controllers/boards_controller.rb +++ b/app/controllers/boards_controller.rb @@ -63,7 +63,6 @@ class BoardsController < ApplicationController @board = @project.boards.build(params[:board]) end - verify :method => :post, :only => :create, :redirect_to => { :action => :index } def create @board = @project.boards.build(params[:board]) if @board.save @@ -77,7 +76,6 @@ class BoardsController < ApplicationController def edit end - verify :method => :put, :only => :update, :redirect_to => { :action => :index } def update if @board.update_attributes(params[:board]) redirect_to_settings_in_projects @@ -86,7 +84,6 @@ class BoardsController < ApplicationController end end - verify :method => :delete, :only => :destroy, :redirect_to => { :action => :index } def destroy @board.destroy redirect_to_settings_in_projects |