FPauth_strategies.Password
Password is a simple authentication strategy which verifies identity via provided in params password.
Password
Requires "password" param, otherwise skipped.
val name : string
Name of the strategy.
module type MODEL = sig ... end
MODEL contains requirements for user model in order to use the strategy
MODEL
module Make (M : MODEL) : sig ... end
Make creates a strategy for a provided model.
Make