mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
Add add_handler macro
This commit is contained in:
parent
6a4ed2d9eb
commit
eb4c82043a
4 changed files with 18 additions and 7 deletions
|
@ -21,10 +21,14 @@ macro redirect(url)
|
|||
env.response.status_code = 301
|
||||
end
|
||||
|
||||
macro add_handler(handler)
|
||||
Kemal.config.add_handler {{handler}}
|
||||
end
|
||||
|
||||
# Uses Kemal::Middleware::HTTPBasicAuth to easily add HTTP Basic Auth support.
|
||||
macro basic_auth(username, password)
|
||||
auth_handler = Kemal::Middleware::HTTPBasicAuth.new({{username}}, {{password}})
|
||||
Kemal.config.add_handler auth_handler
|
||||
add_handler auth_handler
|
||||
end
|
||||
|
||||
macro public_folder(path)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue