diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-10-05 16:24:29 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-10-11 11:39:05 -0300 |
commit | ecf4c10e9c395604583820ad01167db34d09d4aa (patch) | |
tree | 7734ebceb1167832606dcc5463caacc9d0bb4460 /config | |
parent | b4b8e0ec9405c4b5d17b53552612397e847e734d (diff) | |
download | gitlab-ce-ecf4c10e9c395604583820ad01167db34d09d4aa.tar.gz |
Add index action to Projects::BoardsController to return project boards
Diffstat (limited to 'config')
-rw-r--r-- | config/routes/project.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb index e8807ef06a7..3a7c4f86301 100644 --- a/config/routes/project.rb +++ b/config/routes/project.rb @@ -416,7 +416,7 @@ resources :namespaces, path: '/', constraints: { id: /[a-zA-Z.0-9_\-]+/ }, only: end end - resource :board, only: [:show] do + resources :boards, only: [:index, :show] do scope module: :boards do resources :issues, only: [:update] |