package sihl

  1. Overview
  2. Docs
val create_reset_token : ?ctx:(string * string) list -> string -> string option Lwt.t

create_reset_token ?ctx email creates and stores a reset token.

Returns None if there is no user with email. The reset token can be used with reset_password to set the password without knowing the old password.

val reset_password : ?ctx:(string * string) list -> token:string -> string -> string -> (unit, string) Result.t Lwt.t

reset_password ?ctx ~token ~password ~password_confirmation sets the password of a user associated with the reset token.

val register : unit -> Sihl__.Core_service.t
val lifecycle : Sihl__.Core_lifecycle.lifecycle