Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ConcreteBlueprint = Blueprint{ core.Blueprint{ Name: "user", Description: "this blueprint is about users", MigrationRegistry: migrations.BMigrationRegistry, }, }
Functions ¶
This section is empty.
Types ¶
type Blueprint ¶
func (Blueprint) InitRouter ¶
func (b Blueprint) InitRouter(app core.IApp, group *gin.RouterGroup)
type ChangePasswordHandlerParams ¶
type ChangePasswordHandlerParams struct { OldPassword string `form:"old_password" json:"old_password" xml:"old_password" binding:"required"` Password string `form:"password" json:"password" xml:"password" binding:"required"` ConfirmedPassword string `form:"confirm_password" json:"confirm_password" xml:"confirm_password" binding:"required"` }
type ForgotPasswordHandlerParams ¶
type ForgotPasswordHandlerParams struct {
Email string `form:"email" json:"email" xml:"email" binding:"required" valid:"email"`
}
type ResetPasswordHandlerParams ¶
type ResetPasswordHandlerParams struct { Code string `form:"code" json:"code" xml:"code" binding:"required"` Password string `form:"password" json:"password" xml:"password" binding:"required"` ConfirmedPassword string `form:"confirm_password" json:"confirm_password" xml:"confirm_password" binding:"required"` }
Click to show internal directories.
Click to hide internal directories.