| Safe Haskell | None |
|---|---|
| Language | Haskell98 |
Happstack.Authenticate.Password.URL
Documentation
data AccountURL Source
Constructors
| Password |
rPassword :: forall tok e r. Boomerang e tok r ((:-) AccountURL r)
accountURL :: Router () (AccountURL :- ()) Source
data PasswordURL Source
Constructors
| Token | |
| Account (Maybe (UserId, AccountURL)) | |
| Partial PartialURL | |
| PasswordRequestReset | |
| PasswordReset | |
| UsernamePasswordCtrl |
Instances
rUsernamePasswordCtrl :: forall tok e r. Boomerang e tok r ((:-) PasswordURL r)
rPasswordReset :: forall tok e r. Boomerang e tok r ((:-) PasswordURL r)
rPasswordRequestReset :: forall tok e r. Boomerang e tok r ((:-) PasswordURL r)
rPartial :: forall tok e r. Boomerang e tok ((:-) PartialURL r) ((:-) PasswordURL r)
rAccount :: forall tok e r. Boomerang e tok ((:-) (Maybe (UserId, AccountURL)) r) ((:-) PasswordURL r)
rToken :: forall tok e r. Boomerang e tok r ((:-) PasswordURL r)
passwordURL :: Router () (PasswordURL :- ()) Source
nestPasswordURL :: RouteT PasswordURL m a -> RouteT AuthenticateURL m a Source