debian-mirror-gitlab/config/initializers/relative_naming_ci_namespace.rb

19 lines
455 B
Ruby
Raw Normal View History

2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
2016-08-24 12:49:21 +05:30
# Description: https://coderwall.com/p/heed_q/rails-routing-and-namespaced-models
#
# This allows us to use CI ActiveRecord objects in all routes and use it:
# - [project.namespace, project, build]
#
# instead of:
2017-09-10 17:25:29 +05:30
# - project_job_path(project, build)
2016-08-24 12:49:21 +05:30
#
# Without that, Ci:: namespace is used for resolving routes:
2017-09-10 17:25:29 +05:30
# - project_ci_build_path(project, build)
2016-08-24 12:49:21 +05:30
module Ci
def self.use_relative_model_naming?
true
end
end