package sihl-contract

  1. Overview
  2. Docs
val find_opt : user_id:string -> t option Lwt.t
val find : user_id:string -> t Lwt.t
val find_by_email : email:string -> t Lwt.t
val find_by_email_opt : email:string -> t option Lwt.t
val update_password : ?password_policy:(string -> (unit, string) Result.t) -> user:t -> old_password:string -> new_password:string -> new_password_confirmation:string -> unit -> (t, string) Result.t Lwt.t
val update_details : user:t -> email:string -> username:string option -> t Lwt.t
val set_password : ?password_policy:(string -> (unit, string) Result.t) -> user:t -> password:string -> password_confirmation:string -> unit -> (t, string) Result.t Lwt.t

Set the password of a user without knowing the old password.

This feature is typically used by admins.

val create : email:string -> password:string -> username:string option -> admin:bool -> confirmed:bool -> (t, string) Stdlib.result Lwt.t
val create_user : email:string -> password:string -> username:string option -> t Lwt.t

Create and store a user.

val create_admin : email:string -> password:string -> username:string option -> t Lwt.t

Create and store a user that is also an admin.

val register_user : ?password_policy:(string -> (unit, string) Stdlib.result) -> ?username:string -> email:string -> password:string -> password_confirmation:string -> unit -> (t, error) Result.t Lwt.t

Create and store new user.

Provide password_policy to check whether the password fulfills certain criteria.

val login : email:string -> password:string -> (t, error) Result.t Lwt.t

Find user by email if password matches.

val register : unit -> Sihl_core.Container.Service.t