Files
discourse/lib/permalink_constraint.rb
T

10 lines
169 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2014-08-29 11:28:16 -04:00
class PermalinkConstraint
def matches?(request)
Permalink.where(url: Permalink.normalize_url(request.fullpath)).exists?
2014-08-29 11:28:16 -04:00
end
end