summaryrefslogtreecommitdiff
path: root/config/routes.rb
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-01 17:11:56 -0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-17 12:58:58 -0300
commit0fb9210dbb38cd45fc8da052317a9aaf830e1db9 (patch)
tree62a34f98cb2eae7d87352654789a916c3e3427da /config/routes.rb
parent4f45d11363c4bedb9a68fc461d931abf6f93b5f0 (diff)
downloadgitlab-ce-0fb9210dbb38cd45fc8da052317a9aaf830e1db9.tar.gz
Add endpoint to allow users to move lists
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb2
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]