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-03 03:19:13 +0300
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2016-08-17 18:58:58 +0300
commit296bcbd6640ddeb06093c2505ed749be07362975 (patch)
tree7864e4b47b6080f1128ac16dea9dc4d66d16bc19 /config/routes.rb
parent52b6a7e966670fd7320dc821d11311f50b3725e7 (diff)
Add endpoint to list issues for a specific board list
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 9a56e39010f..7c14aba5644 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -857,6 +857,7 @@ Rails.application.routes.draw do
end
resource :board, only: [:show] do
+ resources :issues, only: [:index], controller: :board_issues
resources :lists, only: [:create, :update, :destroy], controller: :board_lists
end