Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lapis/application.lua
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,9 @@ do
"get",
"post",
"delete",
"put"
"put",
"patch",
"head"
}
for _index_0 = 1, #_list_0 do
local meth = _list_0[_index_0]
Expand Down
2 changes: 1 addition & 1 deletion lapis/application.moon
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ class Application
@router = nil

-- dynamically create methods for common HTTP verbs
for meth in *{"get", "post", "delete", "put"}
for meth in *{"get", "post", "delete", "put", "patch", "head"}
upper_meth = meth\upper!

@__base[meth] = (route_name, path, handler) =>
Expand Down