mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-04 08:39:49 +01:00
routing: remove HEAD from HTTP methods
Kemal automatically creates an associated HEAD route for all GET routes
This commit is contained in:
parent
9cc0418769
commit
c23ad25899
@ -1,5 +1,5 @@
|
|||||||
module Invidious::Routing
|
module Invidious::Routing
|
||||||
{% for http_method in {"get", "post", "delete", "options", "patch", "put", "head"} %}
|
{% for http_method in {"get", "post", "delete", "options", "patch", "put"} %}
|
||||||
|
|
||||||
macro {{http_method.id}}(path, controller, method = :handle)
|
macro {{http_method.id}}(path, controller, method = :handle)
|
||||||
{{http_method.id}} \{{ path }} do |env|
|
{{http_method.id}} \{{ path }} do |env|
|
||||||
|
Loading…
Reference in New Issue
Block a user