Documentation ¶
Index ¶
Constants ¶
View Source
const ( // The default order by field for the list function. OrderBy = "created_at" // The default order direction field for the list function. OrderDirection = "desc" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Categories ¶
type Categories struct { Categories domain.Categories Pagination *pagination.Pagination }
Categories defines the struct for returning categories and pagination back to the template.
type Namespace ¶
type Namespace struct {
// contains filtered or unexported fields
}
Namespace defines the methods for categories to be used as template functions.
func (*Namespace) ByName ¶
func (ns *Namespace) ByName(name interface{}) interface{}
ByName
Obtains the category by name and returns a domain.Category type or nil if not found.
Example: {{ categoryByName "sports" }}
func (*Namespace) Find ¶
func (ns *Namespace) Find(id interface{}) interface{}
Find
Obtains the category by ID and returns a domain.Category type or nil if not found.
Example: {{ category 123 }}
Click to show internal directories.
Click to hide internal directories.