AuthN.SessionStorage behaviour (AuthN v0.22.0) View Source
Module used for storing, retrieving and deleting the user token into/from the session.
This module serves as an interface, delegating calls to another module implementing
the session's storage logic. The default implementation module is
AuthN.SessionStorage.SignedCookie, which stores sessions into signed cookies.
Another module implementing sessions storage can be specified by adding the module
name into the :session_storage key of conn.private.
Link to this section Summary
Link to this section Types
Specs
conn() :: %Plug.Conn{
adapter: term(),
assigns: term(),
body_params: term(),
cookies: term(),
halted: term(),
host: term(),
method: term(),
owner: term(),
params: term(),
path_info: term(),
path_params: term(),
port: term(),
private: term(),
query_params: term(),
query_string: term(),
remote_ip: term(),
req_cookies: term(),
req_headers: term(),
request_path: term(),
resp_body: term(),
resp_cookies: term(),
resp_headers: term(),
scheme: term(),
script_name: term(),
secret_key_base: term(),
state: term(),
status: term()
}