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:
authorPhil Hughes <me@iamphill.com>2017-01-24 13:27:41 +0300
committerFatih Acet <acetfatih@gmail.com>2017-02-03 17:02:43 +0300
commita132b7d8ce0d962272de5932568a46b64b6dfc5e (patch)
tree604f29503d77d7317050a7b262977110141c07e8 /config
parent52ea505126da19717c9137e6bb301f55965eb6e4 (diff)
Add issues to boards list
This removes the backlog list & instead creates a modal window that will list all issues that are not part of a list for easy adding onto the board Closes #26205
Diffstat (limited to 'config')
-rw-r--r--config/routes/project.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb
index efe2fbc521d..5c33bb4a6ca 100644
--- a/config/routes/project.rb
+++ b/config/routes/project.rb
@@ -266,6 +266,8 @@ constraints(ProjectUrlConstrainer.new) do
end
resources :boards, only: [:index, :show] do
+ get :backlog, on: :member
+
scope module: :boards do
resources :issues, only: [:update]