debian-mirror-gitlab/app/models/redirect_route.rb

19 lines
528 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2019-07-07 11:18:12 +05:30
class RedirectRoute < ApplicationRecord
2017-09-10 17:25:29 +05:30
belongs_to :source, polymorphic: true # rubocop:disable Cop/PolymorphicAssociations
2017-08-17 22:00:37 +05:30
validates :source, presence: true
validates :path,
length: { within: 1..255 },
presence: true,
uniqueness: { case_sensitive: false }
2017-09-10 17:25:29 +05:30
scope :matching_path_and_descendants, -> (path) do
2019-10-12 21:52:04 +05:30
wheres = 'LOWER(redirect_routes.path) = LOWER(?) OR LOWER(redirect_routes.path) LIKE LOWER(?)'
2018-03-17 18:26:18 +05:30
2017-09-10 17:25:29 +05:30
where(wheres, path, "#{sanitize_sql_like(path)}/%")
end
2017-08-17 22:00:37 +05:30
end