diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-01 17:11:56 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-17 12:58:58 -0300 |
commit | 0fb9210dbb38cd45fc8da052317a9aaf830e1db9 (patch) | |
tree | 62a34f98cb2eae7d87352654789a916c3e3427da /config/routes.rb | |
parent | 4f45d11363c4bedb9a68fc461d931abf6f93b5f0 (diff) | |
download | gitlab-ce-0fb9210dbb38cd45fc8da052317a9aaf830e1db9.tar.gz |
Add endpoint to allow users to move lists
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index 1495b130b6e..bcf457ca023 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -857,7 +857,7 @@ Rails.application.routes.draw do end resource :board, only: [:show] do - resources :lists, only: [:create], controller: :board_lists + resources :lists, only: [:create, :update], controller: :board_lists end resources :todos, only: [:create] |