discourse/lib/permalink_constraint.rb

8 lines
120 B
Ruby
Raw Normal View History

2014-08-29 10:28:16 -05:00
class PermalinkConstraint
def matches?(request)
Permalink.where(url: request.fullpath[1..-1]).exists?
end
end