Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-02 00:44:33 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-17 18:58:58 +0300
commit547d218e6bb25fb2b2fa13cd86f08c3ac1e69b8b (patch)
treeee0948c143beb70054e8a05d3339c0e0616084cb /config
parentaa97c0fd12f130c4e6028a9a9361fea30bf86bca (diff)
Add endpoint to allow users to remove lists
Diffstat (limited to 'config')
-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]