mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 13:09:18 +08:00
8 lines
167 B
Ruby
8 lines
167 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PermalinkConstraint
|
|
def matches?(request)
|
|
Permalink.where(url: Permalink.normalize_url(request.fullpath)).exists?
|
|
end
|
|
end
|