2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/lib/permalink_constraint.rb
2014-08-29 11:28:16 -04:00

7 lines
120 B
Ruby

class PermalinkConstraint
def matches?(request)
Permalink.where(url: request.fullpath[1..-1]).exists?
end
end