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:
authorPhil Hughes <me@iamphill.com>2016-10-03 16:29:21 +0300
committerPhil Hughes <me@iamphill.com>2016-10-06 13:00:01 +0300
commit4d9f76c15115d3fd48d61e998edca86917fb1ccf (patch)
tree1bd8bce6f935c1b5785d8dab310ef900c028a0e8 /config/routes
parent4241c2906c9531ab7ddb43740b222a102f5508fa (diff)
Added ability to save the new issue
Diffstat (limited to 'config/routes')
-rw-r--r--config/routes/project.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb
index 224ec7e8324..14d986c9475 100644
--- a/config/routes/project.rb
+++ b/config/routes/project.rb
@@ -424,7 +424,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