diff --git a/src/kemal/dsl.cr b/src/kemal/dsl.cr index 15b3742..154662e 100644 --- a/src/kemal/dsl.cr +++ b/src/kemal/dsl.cr @@ -6,8 +6,8 @@ # - WebSocket(ws) # - before_* # - error -HTTP_METHODS = %w(get post put patch delete options) -FILTER_METHODS = %w(get post put patch delete options all) +HTTP_METHODS = %w(get post put patch delete options head) +FILTER_METHODS = %w(get post put patch delete options head all) {% for method in HTTP_METHODS %} def {{method.id}}(path : String, &block : HTTP::Server::Context -> _)