mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
3a54923116
implement permalink import for lithium
7 lines
138 B
Ruby
7 lines
138 B
Ruby
class PermalinkConstraint
|
|
|
|
def matches?(request)
|
|
Permalink.where(url: Permalink.normalize_url(request.fullpath)).exists?
|
|
end
|
|
|
|
end
|