Documentation ¶
Index ¶
- func BuildRouter(c *services.Container) error
- func Register(h Handler)
- type Auth
- func (h *Auth) ForgotPasswordPage(ctx echo.Context) error
- func (h *Auth) ForgotPasswordSubmit(ctx echo.Context) error
- func (h *Auth) Init(c *services.Container) error
- func (h *Auth) LoginPage(ctx echo.Context) error
- func (h *Auth) LoginSubmit(ctx echo.Context) error
- func (h *Auth) Logout(ctx echo.Context) error
- func (h *Auth) RegisterPage(ctx echo.Context) error
- func (h *Auth) RegisterSubmit(ctx echo.Context) error
- func (h *Auth) ResetPasswordPage(ctx echo.Context) error
- func (h *Auth) ResetPasswordSubmit(ctx echo.Context) error
- func (h *Auth) Routes(g *echo.Group)
- func (h *Auth) VerifyEmail(ctx echo.Context) error
- type Cache
- type Contact
- type Error
- type Handler
- type Pages
- type Search
- type Task
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Auth ¶
type Auth struct { *services.TemplateRenderer // contains filtered or unexported fields }
func (*Auth) ForgotPasswordPage ¶
func (*Auth) ForgotPasswordSubmit ¶
func (*Auth) LoginSubmit ¶
func (*Auth) RegisterPage ¶
func (*Auth) RegisterSubmit ¶
func (*Auth) ResetPasswordPage ¶
func (*Auth) ResetPasswordSubmit ¶
func (*Auth) VerifyEmail ¶
type Cache ¶ added in v0.15.0
type Cache struct { *services.TemplateRenderer // contains filtered or unexported fields }
type Contact ¶
type Contact struct { *services.TemplateRenderer // contains filtered or unexported fields }
type Error ¶
type Error struct {
*services.TemplateRenderer
}
type Handler ¶
type Handler interface { // Routes allows for self-registration of HTTP routes on the router Routes(g *echo.Group) // Init provides the service container to initialize Init(*services.Container) error }
Handler handles one or more HTTP routes
type Pages ¶
type Pages struct {
*services.TemplateRenderer
}
type Search ¶
type Search struct {
*services.TemplateRenderer
}
type Task ¶ added in v0.15.0
type Task struct { *services.TemplateRenderer // contains filtered or unexported fields }
Click to show internal directories.
Click to hide internal directories.