Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type List ¶
type List struct {
models.BaseModel
// Fields
Title string `db:"title"`
Description string `db:"description"`
Archived bool `db:"archived"`
Deadline types.DateTime `db:"deadline"`
// Relations
OwnerId string `db:"owner"`
Owner *models.Record `db:"-"`
Tasks []*Task `db:"-"`
// Computed
Completed int `db:"-"`
}
func FindUserLists ¶
FindUserLists finds all the todo lists associated to the user. It also finds all associated todo for every list
Click to show internal directories.
Click to hide internal directories.