9 lines
162 B
Ruby
9 lines
162 B
Ruby
class SlugConstraint
|
|
def matches?(request)
|
|
if request.params[:slug]
|
|
request.params[:slug] = request.params[:slug].downcase
|
|
end
|
|
true
|
|
end
|
|
end
|