Files
libredesk/internal/conversation/priority/models/models.go
T
Abhinav Raut a530f36f65 fix: bugs in conversation list filters getting applied without clicking the apply button
- Refactor: Make status and priority a subpackage of conversations package
- Refactor: Remove hardcoded priority array
- Fixes to query builder.
- Feat: set Favicon from the general app settings
2024-11-04 02:03:55 +05:30

10 lines
199 B
Go

package models
import "time"
type Priority struct {
ID int `db:"id" json:"id"`
CreatedAt time.Time `db:"created_at" json:"created_at"`
Name string `db:"name" json:"name"`
}