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:
authorAishwarya Subramanian <asubramanian@gitlab.com>2019-08-26 19:23:38 +0300
committerAishwarya Subramanian <asubramanian@gitlab.com>2019-08-26 19:23:38 +0300
commitcf4856337d50ca3eab59a34e8d5a10441999a920 (patch)
tree90b1695f96a7d7e3594d7c88df9942d7580a8f7b /config
parent94490b63b3c40af9c73db10161f1f5905165309b (diff)
Added routes for trial registration api
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index d633228a495..3cdb0328604 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -188,6 +188,10 @@ Rails.application.routes.draw do
draw :user
draw :project
+ Gitlab.ee do
+ draw :trial_registration
+ end
+
root to: "root#index"
get '*unmatched_route', to: 'application#route_not_found'