95e0fac59a
Given group `gitlab` and `gitlab-org` exists. When rename `gitlab` it will rename `gitlab-org` group route too. This commit fixes it Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
22 lines
699 B
Ruby
22 lines
699 B
Ruby
class Route < ActiveRecord::Base
|
|
belongs_to :source, polymorphic: true
|
|
|
|
validates :source, presence: true
|
|
|
|
validates :path,
|
|
length: { within: 1..255 },
|
|
presence: true,
|
|
uniqueness: { case_sensitive: false }
|
|
|
|
after_update :rename_children, if: :path_changed?
|
|
|
|
def rename_children
|
|
# We update each row separately because MySQL does not have regexp_replace.
|
|
# rubocop:disable Rails/FindEach
|
|
Route.where('path LIKE ?', "#{path_was}/%").each do |route|
|
|
# Note that update column skips validation and callbacks.
|
|
# We need this to avoid recursive call of rename_children method
|
|
route.update_column(:path, route.path.sub(path_was, path))
|
|
end
|
|
end
|
|
end
|