diff options
author | Fatih Acet <acetfatih@gmail.com> | 2016-10-06 14:49:59 +0000 |
---|---|---|
committer | Fatih Acet <acetfatih@gmail.com> | 2016-10-06 14:49:59 +0000 |
commit | 9a13f885a9dc7b072d41160a6d3db965c9114b4b (patch) | |
tree | 5becd7566eae9f65806e99035fe3651579e27b44 /config | |
parent | dcfda304aa8c06f427cb5672ceb4e070047436be (diff) | |
parent | 8ad923695e54c7ac6e9c47c37c505a7ac6b34017 (diff) | |
download | gitlab-ce-9a13f885a9dc7b072d41160a6d3db965c9114b4b.tar.gz |
Merge branch 'issue-boards-new-issue' into 'master'
Issue boards new issue form
## What does this MR do?
Adds a new issue form into the issue boards lists.
## Screenshots (if relevant)
![Screen_Shot_2016-10-03_at_14.57.30](/uploads/17fe6cd37bd020a2ee1688e0b496c18f/Screen_Shot_2016-10-03_at_14.57.30.png)
![Screen_Shot_2016-10-03_at_14.57.32](/uploads/c3f12bcb9ff9a0e7ce5b0bb06dfb0dd7/Screen_Shot_2016-10-03_at_14.57.32.png)
## What are the relevant issue numbers?
Part of #21219
See merge request !6653
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 0c188478ed1..e8807ef06a7 100644 --- a/config/routes/project.rb +++ b/config/routes/project.rb @@ -425,7 +425,7 @@ resources :namespaces, path: '/', constraints: { id: /[a-zA-Z.0-9_\-]+/ }, only: post :generate end - resources :issues, only: [:index] + resources :issues, only: [:index, :create] end end end |