Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/model/notification.go
2017-05-24 17:11:13 +10:00

24 lignes
540 o
Go

package model
import (
"github.com/NyaaPantsu/nyaa/config"
)
type Notification struct {
ID uint
Content string
Read bool
Identifier string
Url string
UserID uint
// User *User `gorm:"AssociationForeignKey:UserID;ForeignKey:user_id"` // Don't think that we need it here
}
func NewNotification(identifier string, c string, url string) Notification {
return Notification{Identifier: identifier, Content: c, Url: url}
}
func (n *Notification) TableName() string {
return config.NotificationTableName
}