mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-04-30 07:07:10 +08:00
7 lines
167 B
Ruby
7 lines
167 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PermalinkConstraint
|
|
def matches?(request)
|
|
Permalink.where(url: Permalink.normalize_url(request.fullpath)).exists?
|
|
end
|
|
end
|