summaryrefslogtreecommitdiff
path: root/app/models
diff options
context:
space:
mode:
authorSean McGivern <sean@mcgivern.me.uk>2016-12-13 13:04:11 +0000
committerSean McGivern <sean@mcgivern.me.uk>2016-12-13 13:04:11 +0000
commitbd219711b99a31025614bf5715b35a140baf50b6 (patch)
tree65d34de4922d86cab50ebd103a817adf250e482b /app/models
parent0139896b370a56619b29e08ba8b5d0da091443b1 (diff)
parent3e0b8e000f088c24493e993139f8af1be2e14de1 (diff)
downloadgitlab-ce-bd219711b99a31025614bf5715b35a140baf50b6.tar.gz
Merge branch 'dz-nested-group-improvements-2' into 'master'
Minor improvements to nested groups code See merge request !8011
Diffstat (limited to 'app/models')
-rw-r--r--app/models/concerns/routable.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/app/models/concerns/routable.rb b/app/models/concerns/routable.rb
index d36bb9da296..1108a64c59e 100644
--- a/app/models/concerns/routable.rb
+++ b/app/models/concerns/routable.rb
@@ -7,6 +7,7 @@ module Routable
has_one :route, as: :source, autosave: true, dependent: :destroy
validates_associated :route
+ validates :route, presence: true
before_validation :update_route_path, if: :full_path_changed?
end
@@ -28,17 +29,17 @@ module Routable
order_sql = "(CASE WHEN #{binary} routes.path = #{connection.quote(path)} THEN 0 ELSE 1 END)"
- where_paths_in([path]).reorder(order_sql).take
+ where_full_path_in([path]).reorder(order_sql).take
end
# Builds a relation to find multiple objects by their full paths.
#
# Usage:
#
- # Klass.where_paths_in(%w{gitlab-org/gitlab-ce gitlab-org/gitlab-ee})
+ # Klass.where_full_path_in(%w{gitlab-org/gitlab-ce gitlab-org/gitlab-ee})
#
# Returns an ActiveRecord::Relation.
- def where_paths_in(paths)
+ def where_full_path_in(paths)
wheres = []
cast_lower = Gitlab::Database.postgresql?