Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add patch & head methods to app #775

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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