diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-15 19:50:23 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-17 12:58:59 -0300 |
commit | cd98ff179cb20d9dc4460d173288d0e1582c4293 (patch) | |
tree | 5ec16f4ca84f95219d2b2a19c245532a7fab8254 /config | |
parent | c3880d105744dde1c8a30978e0cf13ebe017a91b (diff) | |
download | gitlab-ce-cd98ff179cb20d9dc4460d173288d0e1582c4293.tar.gz |
Move action to render board lists to `Projects::Boards::ListsController`
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 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 |