users

package
v0.0.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 23, 2021 License: Apache-2.0 Imports: 7 Imported by: 0

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 Namespace

type Namespace struct {
	// contains filtered or unexported fields
}

Namespace defines the methods for users to be used as template functions.

func New

func New(d *deps.Deps) *Namespace

Creates a new users Namespace

func (*Namespace) Find

func (ns *Namespace) Find(id interface{}) interface{}

Find

Obtains the user by ID and returns a domain.UserPart type or nil if not found.

Example: {{ user 123 }}

func (*Namespace) List

func (ns *Namespace) List(query params.Query) (interface{}, error)

Returns errors.TEMPLATE if the template user params failed to parse.

Example: {{ $result := users (dict "limit" 10) }} {{ with $result.Users }}

{{ range $user := . }}
    <h2>{{ $user.Name }}</h2>
{{ end }}
{{ else }}
    <h4>No users found</h4>

{{ end }}

type Users

type Users struct {
	Users      domain.UsersParts
	Pagination *pagination.Pagination
}

Categories defines the struct for returning categories and pagination back to the template.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL