diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-01 18:44:33 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-17 12:58:58 -0300 |
commit | 547d218e6bb25fb2b2fa13cd86f08c3ac1e69b8b (patch) | |
tree | ee0948c143beb70054e8a05d3339c0e0616084cb /config | |
parent | aa97c0fd12f130c4e6028a9a9361fea30bf86bca (diff) | |
download | gitlab-ce-547d218e6bb25fb2b2fa13cd86f08c3ac1e69b8b.tar.gz |
Add endpoint to allow users to remove 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 bcf457ca023..9a56e39010f 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, :update], controller: :board_lists + resources :lists, only: [:create, :update, :destroy], controller: :board_lists end resources :todos, only: [:create] |