Genie.Helpers.request
— Function.request() :: HTTP.Request
Returns the Request
object associated with the current HTTP request.
request(params::Dict{Symbol,Any}) :: HTTP.Request
Returns the Request
object associated with the current HTTP request.
Genie.Helpers.response
— Function.response() :: HTTP.Response
Returns the Response
object associated with the current HTTP request.
response(params::Dict{Symbol,Any}) :: HTTP.Response
Returns the Response
object associated with the current HTTP request.
Genie.Helpers.flash
— Function.flash()
Returns the flash
dict object associated with the current HTTP request.
flash(params::Dict{Symbol,Any})
Returns the flash
dict object associated with the current HTTP request.
flash(value::Any) :: Nothing
Stores value
on the flash
.
flash(value::Any, params::Dict{Symbol,Any}) :: Nothing
Stores value
on the flash
.
Genie.Helpers.flash_has_message
— Function.flash_has_message() :: Bool
Checks if there's any value on the flash storage
Genie.Helpers.wsclient
— Function.wsclient(params::Dict{Symbol,Any}) :: HTTP.WebSockets.WebSocket
Returns the WebSocket
object associated with the current WS request.