• index
    • nova
      • get_main_app/0
      • application_loaded/1
      • get_env/2
    • nova_app
      • start/2
      • stop/1
    • nova_basic_handler
      • handle_json/4
      • handle_ok/4
      • handle_status/4
      • handle_redirect/4
      • handle_cowboy_req/4
    • nova_erlydtl_inventory
      • version/0
      • inventory/1
      • url/2
    • nova_handlers
      • register_handler/2
      • unregister_handler/1
      • get_handler/1
    • nova_http_handler
      • init/2
      • handle/4
    • nova_router
      • status_page/2
      • add_route/2
      • get_all_routes/0
      • get_app/1
      • get_main_app/0
      • set_main_app/1
      • process_routefile/1
      • apply_routes/0
    • nova_security_handler
      • execute/2
    • nova_session
      • get/2
      • set/3
      • delete/1
      • delete/2
      • generate_session_id/0
    • nova_session_ets
      • start_link/0
      • get_value/2
      • set_value/3
      • delete_value/1
      • delete_value/2
    • nova_stream_h
      • init/3
      • data/4
      • info/3
      • terminate/3
      • early_error/5
    • nova_sup
      • start_link/0
    • nova_ws_handler
      • init/2
      • websocket_init/1
      • websocket_handle/2
      • websocket_info/2
      • terminate/3

    nova_session

    Functions

    get(Req, Key) ->
    • Req = cowboy_req:req()
    • Key = binary()
    set(Req, Key, Value) ->
    • Req = cowboy_req:req()
    • Key = binary()
    • Value = binary()
    delete(Req) ->
    • Req = cowboy_req:req()
    delete(Req, Key) ->
    • Req = cowboy_req:req()
    • Key = binary()
    generate_session_id()