mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:19:27 +08:00
3a54923116
implement permalink import for lithium
8 lines
138 B
Ruby
8 lines
138 B
Ruby
class PermalinkConstraint
|
|
|
|
def matches?(request)
|
|
Permalink.where(url: Permalink.normalize_url(request.fullpath)).exists?
|
|
end
|
|
|
|
end
|