debian-mirror-gitlab/config/initializers/relative_naming_ci_namespace.rb
2021-03-11 19:13:27 +05:30

19 lines
455 B
Ruby

# frozen_string_literal: true
# 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:
# - project_job_path(project, build)
#
# Without that, Ci:: namespace is used for resolving routes:
# - project_ci_build_path(project, build)
module Ci
def self.use_relative_model_naming?
true
end
end