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
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-16 01:50:23 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-17 18:58:59 +0300
commitcd98ff179cb20d9dc4460d173288d0e1582c4293 (patch)
tree5ec16f4ca84f95219d2b2a19c245532a7fab8254 /config/routes.rb
parentc3880d105744dde1c8a30978e0cf13ebe017a91b (diff)
Move action to render board lists to `Projects::Boards::ListsController`
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 b74d6fa4464..09a8945c59e 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -860,7 +860,7 @@ Rails.application.routes.draw do
scope module: :boards do
resources :issues, only: [:update]
- resources :lists, only: [:create, :update, :destroy] do
+ resources :lists, only: [:index, :create, :update, :destroy] do
collection do
post :generate
end