1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-06 11:19:51 +00:00
discourse/lib/permalink_constraint.rb

8 lines
138 B
Ruby
Raw Normal View History

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