Copyright | (c) CNRS 2017-Present |
---|---|
License | AGPL + CECILL v3 |
Maintainer | team@gargantext.org |
Stability | experimental |
Portability | POSIX |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Synopsis
- data AuthRequest = AuthRequest {}
- data AuthResponse = AuthResponse {}
- type Token = Text
- type TreeId = NodeId
- data CheckAuth
- data AuthenticatedUser = AuthenticatedUser {}
- auth_user_id :: Lens' AuthenticatedUser UserId
- auth_node_id :: Lens' AuthenticatedUser NodeId
- data AuthenticationError
- type AuthContext = '[JWTSettings, CookieSettings]
- data PathId
- type Email = Text
- type Password = Text
- data ForgotPasswordRequest = ForgotPasswordRequest {}
- data ForgotPasswordResponse = ForgotPasswordResponse {}
- data ForgotPasswordGet = ForgotPasswordGet {}
- authRes_user_id :: Lens' AuthResponse UserId
- authRes_tree_id :: Lens' AuthResponse TreeId
- authRes_token :: Lens' AuthResponse Token
Documentation
data AuthRequest #
Main types for AUTH API
Instances
data AuthResponse #
Instances
data AuthenticatedUser #
Instances
data AuthenticationError #
Instances
Show AuthenticationError # | |
Defined in Gargantext.API.Admin.Auth.Types showsPrec :: Int -> AuthenticationError -> ShowS # show :: AuthenticationError -> String # showList :: [AuthenticationError] -> ShowS # | |
Eq AuthenticationError # | |
Defined in Gargantext.API.Admin.Auth.Types (==) :: AuthenticationError -> AuthenticationError -> Bool # (/=) :: AuthenticationError -> AuthenticationError -> Bool # |
type AuthContext = '[JWTSettings, CookieSettings] #
data ForgotPasswordRequest #
Instances
data ForgotPasswordResponse #
Instances
FromJSON ForgotPasswordResponse # | |
Defined in Gargantext.API.Admin.Auth.Types | |
ToJSON ForgotPasswordResponse # | |
Defined in Gargantext.API.Admin.Auth.Types toJSON :: ForgotPasswordResponse -> Value # toEncoding :: ForgotPasswordResponse -> Encoding # toJSONList :: [ForgotPasswordResponse] -> Value # | |
Generic ForgotPasswordResponse # | |
Defined in Gargantext.API.Admin.Auth.Types type Rep ForgotPasswordResponse :: Type -> Type # | |
ToSchema ForgotPasswordResponse # | |
HasSwagger (WithCustomErrorScheme GargAPI) # | |
Defined in Gargantext.API.Routes | |
type Rep ForgotPasswordResponse # | |
Defined in Gargantext.API.Admin.Auth.Types type Rep ForgotPasswordResponse = D1 ('MetaData "ForgotPasswordResponse" "Gargantext.API.Admin.Auth.Types" "gargantext-0.0.7.1.5.3-inplace" 'False) (C1 ('MetaCons "ForgotPasswordResponse" 'PrefixI 'True) (S1 ('MetaSel ('Just "_fpRes_status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))) |
data ForgotPasswordGet #