Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuthenticationRequest ¶
func GetAuthenticationRequest ¶
func GetAuthenticationRequest(c *gin.Context) (*AuthenticationRequest, error)
type IdentificationRequest ¶
type IdentificationRequest struct {
AccessToken string
}
func GetIdentificationRequest ¶
func GetIdentificationRequest(c *gin.Context) (*IdentificationRequest, error)
type PasswordSaltByEmailRequest ¶
type PasswordSaltByEmailRequest struct {
Email string
}
func GetPasswordSaltByEmailRequest ¶
func GetPasswordSaltByEmailRequest(c *gin.Context) (*PasswordSaltByEmailRequest, error)
type RefreshRequest ¶
type RefreshRequest struct {
RefreshToken string
}
func GetRefreshRequest ¶
func GetRefreshRequest(c *gin.Context) (*RefreshRequest, error)
type RegistrationRequest ¶
type RegistrationRequest struct { Email string `json:"email"` Password string `json:"password"` PasswordSalt string `json:"passwordSalt"` }
func GetRegistrationRequest ¶
func GetRegistrationRequest(c *gin.Context) (*RegistrationRequest, error)
Click to show internal directories.
Click to hide internal directories.