routing: remove HEAD from HTTP methods

Kemal automatically creates an associated HEAD route for all GET routes
This commit is contained in:
Samantaz Fox 2022-08-09 23:39:53 +02:00
parent 9cc0418769
commit c23ad25899
No known key found for this signature in database
GPG Key ID: F42821059186176E
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
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)
{{http_method.id}} \{{ path }} do |env|