mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
7 lines
120 B
Ruby
7 lines
120 B
Ruby
class PermalinkConstraint
|
|
|
|
def matches?(request)
|
|
Permalink.where(url: request.fullpath[1..-1]).exists?
|
|
end
|
|
|
|
end
|