summaryrefslogtreecommitdiff
path: root/config/routes.rb
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-01 18:44:33 -0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-17 12:58:58 -0300
commit547d218e6bb25fb2b2fa13cd86f08c3ac1e69b8b (patch)
treeee0948c143beb70054e8a05d3339c0e0616084cb /config/routes.rb
parentaa97c0fd12f130c4e6028a9a9361fea30bf86bca (diff)
downloadgitlab-ce-547d218e6bb25fb2b2fa13cd86f08c3ac1e69b8b.tar.gz
Add endpoint to allow users to remove 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 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]