diff options
author | Sean McGivern <sean@gitlab.com> | 2017-07-06 12:38:29 +0100 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2017-07-06 12:41:40 +0100 |
commit | 920f0159cab8f4e21db4bb1ea9e06d68f7235634 (patch) | |
tree | f16f5bb0f9ca2ac6ad211cb9fe583031c46e0cc9 /config/application.rb | |
parent | 674f05d29ae7775f4eb71c0549a3e39751e04052 (diff) | |
download | gitlab-ce-920f0159cab8f4e21db4bb1ea9e06d68f7235634.tar.gz |
Fix shorter route helpers in production environmentfix-routes-in-production-mode
I don't know exactly when Rails picks each module to use, but this seems to be
used by `app` in the console (for instance, `app.project_path` would fail
before, but works now).
Diffstat (limited to 'config/application.rb')
-rw-r--r-- | config/application.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config/application.rb b/config/application.rb index a9a961d7520..c4701504fab 100644 --- a/config/application.rb +++ b/config/application.rb @@ -166,8 +166,9 @@ module Gitlab config.after_initialize do Rails.application.reload_routes! + named_routes_set = Gitlab::Application.routes.named_routes project_url_helpers = Module.new do - Gitlab::Application.routes.named_routes.helper_names.each do |name| + named_routes_set.helper_names.each do |name| next unless name.include?('namespace_project') define_method(name.sub('namespace_project', 'project')) do |project, *args| @@ -176,6 +177,9 @@ module Gitlab end end + named_routes_set.url_helpers_module.include project_url_helpers + named_routes_set.url_helpers_module.extend project_url_helpers + Gitlab::Routing.url_helpers.include project_url_helpers Gitlab::Routing.url_helpers.extend project_url_helpers |