summaryrefslogtreecommitdiff
path: root/config/routes.rb
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-02 22:53:44 -0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-17 12:58:58 -0300
commit75f0bc4af87b418b6b27f69c03bf9fa4756cedfc (patch)
treed8ceb711fb1d5f931d03801aeedbaf3aa71b3f45 /config/routes.rb
parentaff7a2ef55b317b3e5c8d83f4e9ae9fc64f4fa8f (diff)
downloadgitlab-ce-75f0bc4af87b418b6b27f69c03bf9fa4756cedfc.tar.gz
Add endpoint to allow users to move issues between 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 7c14aba5644..75bd8a7fa1e 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 :issues, only: [:index], controller: :board_issues
+ resources :issues, only: [:index, :update], controller: :board_issues
resources :lists, only: [:create, :update, :destroy], controller: :board_lists
end