This is a robust approach to making controller/{conference_name}/* case insensitive. Richard reported this issue in regards to West2026 flyer.

This commit is contained in:
2026-03-15 08:47:42 +00:00
parent dc9665b79d
commit 69e8a29fc7
5 changed files with 16 additions and 6 deletions
+6
View File
@@ -0,0 +1,6 @@
class SlugConstraint
def matches?(request)
request.params[:slug] = request.params[:slug].downcase if request.params[:slug]
true
end
end