mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
666 B
666 B
Browser Redirect
Just like other things in kemal
, browser redirection is super simple as well. Use environment
variable in defined route's corresponding block and call redirect
on it.
# Redirect browser
get "/logout" do |env|
# important stuff like clearing session etc.
redirect "/login" # redirect to /login page
end
Make sure to receive env
as param in defined route's block or you might end-up having compile-time errors.
Custom Public Folder
Kemal mounts ./public
root path of the project as the default public asset folder. You can change this by using public_folder
.
public_folder "path/to/your/folder"