This repository has been archived on 2023-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
osr-discourse-src/lib/permalink_constraint.rb
T
2014-08-29 11:28:16 -04:00

8 lines
120 B
Ruby

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