mirror of
https://github.com/discourse/discourse.git
synced 2025-01-08 19:26:00 +08:00
8 lines
120 B
Ruby
8 lines
120 B
Ruby
|
class PermalinkConstraint
|
||
|
|
||
|
def matches?(request)
|
||
|
Permalink.where(url: request.fullpath[1..-1]).exists?
|
||
|
end
|
||
|
|
||
|
end
|