mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
Fix ParamParser files memoization (#503)
This commit is contained in:
parent
8bfc3313e9
commit
6de5e7b929
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ module Kemal
|
||||||
URL_ENCODED_FORM = "application/x-www-form-urlencoded"
|
URL_ENCODED_FORM = "application/x-www-form-urlencoded"
|
||||||
APPLICATION_JSON = "application/json"
|
APPLICATION_JSON = "application/json"
|
||||||
MULTIPART_FORM = "multipart/form-data"
|
MULTIPART_FORM = "multipart/form-data"
|
||||||
PARTS = %w(url query body json)
|
PARTS = %w(url query body json files)
|
||||||
# :nodoc:
|
# :nodoc:
|
||||||
alias AllParamTypes = Nil | String | Int64 | Float64 | Bool | Hash(String, JSON::Any) | Array(JSON::Any)
|
alias AllParamTypes = Nil | String | Int64 | Float64 | Bool | Hash(String, JSON::Any) | Array(JSON::Any)
|
||||||
getter files
|
getter files
|
||||||
|
|
Loading…
Reference in a new issue