Started adding listitems
This commit is contained in:
parent
abd21f0c14
commit
7bac9f490e
4 changed files with 37 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
|||
* ID
|
||||
* Text
|
||||
* Description
|
||||
* Status (done, not done)
|
||||
* Fälligkeitsdatum
|
||||
* Erinnerungsdatum (und zeit)
|
||||
* Zuständig (später, mit teilen)
|
||||
|
|
27
models/list_items.go
Normal file
27
models/list_items.go
Normal file
|
@ -0,0 +1,27 @@
|
|||
package models
|
||||
|
||||
// ListItem represents an item in a todolist
|
||||
type ListItem struct {
|
||||
ID int64 `xorm:"int(11) autoincr not null unique pk" json:"id"`
|
||||
Text string `xorm:"varchar(250)" json:"text"`
|
||||
Description string `xorm:"varchar(250)" json:"description"`
|
||||
Done bool `json:"done"`
|
||||
DueDateUnix int64 `xorm:"int(11)" json:"dueDate"`
|
||||
ReminderUnix int64 `xorm:"int(11)" json:"reminderDate"`
|
||||
CreatedByID int64 `xorm:"int(11)" json:"createdByID"` // ID of the user who put that item on the list
|
||||
ListID int64 `xorm:"int(11)" json:"listID"`
|
||||
Created int64 `xorm:"created" json:"created"`
|
||||
Updated int64 `xorm:"updated" json:"updated"`
|
||||
|
||||
CreatedBy User `xorm:"-"`
|
||||
}
|
||||
|
||||
// TableName returns the table name for listitems
|
||||
func (ListItem) TableName() string {
|
||||
return "items"
|
||||
}
|
||||
|
||||
func GetItemsByListID(listID int64) (items []*ListItem, err error) {
|
||||
err = x.Where("list_id = ?", listID).Find(&items)
|
||||
return
|
||||
}
|
|
@ -9,6 +9,8 @@ type List struct {
|
|||
Owner User `xorm:"-" json:"owner"`
|
||||
Created int64 `xorm:"created" json:"created"`
|
||||
Updated int64 `xorm:"updated" json:"updated"`
|
||||
|
||||
Items []*ListItem `xorm:"-"`
|
||||
}
|
||||
|
||||
// GetListByID returns a list by its ID
|
||||
|
@ -31,6 +33,12 @@ func GetListByID(id int64) (list List, err error) {
|
|||
|
||||
list.Owner = user
|
||||
|
||||
items, err := GetItemsByListID(list.ID)
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
list.Items = items
|
||||
|
||||
return list, nil
|
||||
}
|
||||
|
||||
|
|
|
@ -34,6 +34,7 @@ func init() {
|
|||
tables = append(tables,
|
||||
new(User),
|
||||
new(List),
|
||||
new(ListItem),
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue