blob: d9d3034150fb43c1357885bd830f59f9662fa8a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# 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
|