add permalinks route constraint

This commit is contained in:
Neil Lalonde
2014-08-29 11:28:16 -04:00
parent e823f568a7
commit 6b41c6b335
5 changed files with 11 additions and 21 deletions

View File

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