Add support for redirect in URL description

This commit is contained in:
Omar Roth 2018-03-03 18:18:03 -06:00
parent fc2e10a54f
commit cf9931e2a1

View File

@ -334,6 +334,14 @@ get "/search" do |env|
templated "search"
end
get "/redirect" do |env|
if env.params.query["q"]?
env.redirect env.params.query["q"]
else
env.redirect "/"
end
end
error 404 do |env|
error_message = "404 Page not found"
templated "error"