Admin: Gestion des listes

This commit is contained in:
William Bouzourène 2024-12-31 16:19:19 +01:00
parent c54cad7738
commit 151a199bc5
Signed by: bouzoure
SSH key fingerprint: SHA256:19MbXpLua4rUtk8tunMesD8KUKb91LXLHg8E/qTooww
13 changed files with 605 additions and 29 deletions

View file

@ -11,7 +11,7 @@ type List struct {
type ListItem struct {
gorm.Model
Value string
Default string
Default bool
ListID uint
List List
}