diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-02 22:53:44 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-17 12:58:58 -0300 |
commit | 75f0bc4af87b418b6b27f69c03bf9fa4756cedfc (patch) | |
tree | d8ceb711fb1d5f931d03801aeedbaf3aa71b3f45 /config | |
parent | aff7a2ef55b317b3e5c8d83f4e9ae9fc64f4fa8f (diff) | |
download | gitlab-ce-75f0bc4af87b418b6b27f69c03bf9fa4756cedfc.tar.gz |
Add endpoint to allow users to move issues between lists
Diffstat (limited to 'config')
-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 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 |