package sihl

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Use this module to display flash messages to the user across the request-response lifecycle. This is typically used to provide feedback to the user after submitting HTML forms.

module Service : sig ... end
module Entry : sig ... end
type t
val equal : t -> t -> bool
val pp : Stdlib.Format.formatter -> t -> unit
val show : t -> string
val to_yojson : t -> Yojson.Safe.t
val empty : t
val set_success : string list -> t -> t
val set_warning : string list -> t -> t
val set_error : string list -> t -> t
val set_info : string list -> t -> t
val get_error : t -> string list
val get_warning : t -> string list
val get_success : t -> string list
val get_info : t -> string list
val get : Core.Ctx.t -> t option
val ctx_add : t -> Core.Ctx.t -> Core.Ctx.t