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:
authorJames Lopez <james@jameslopez.es>2016-10-24 17:49:25 +0300
committerJames Lopez <james@jameslopez.es>2016-11-17 10:22:55 +0300
commit32679232635dbd0d196a91d0788ee1135ff56b43 (patch)
treee8efc365222449082446986f4428e27d68ca218d /config
parentd4726112656df24ff7721865a96237d5168466f7 (diff)
added the rest of the stages to the controller and relevant specs
Diffstat (limited to 'config')
-rw-r--r--config/routes/project.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb
index ed595c777f5..7e0536b464f 100644
--- a/config/routes/project.rb
+++ b/config/routes/project.rb
@@ -155,7 +155,13 @@ resources :namespaces, path: '/', constraints: { id: /[a-zA-Z.0-9_\-]+/ }, only:
namespace :cycle_analytics do
scope :events, controller: '/projects/cycle_analytics/events' do
- get :issues
+ get :issue
+ get :plan
+ get :code
+ get :test
+ get :review
+ get :staging
+ get :production
end
end