Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Update notifier.go

Cette révision appartient à :
kilo 2017-10-29 00:17:48 +02:00 révisé par GitHub
Parent 0cfe7073b7
révision 36e1574d11
Aucune clé n'a été trouvée pour cette signature dans la base de données
ID de la clé GPG: 4AEE18F83AFDEB23

Voir le fichier

@ -22,7 +22,11 @@ func ToggleReadNotification(identifier string, id uint) { //
models.ORM.Model(&models.Notification{}).Where("identifier = ? AND user_id = ?", identifier, id).Updates(models.Notification{Read: true})
}
// DeleteAllNotifications : Erase notifications from a user
func DeleteAllNotifications(id uint) { //
models.ORM.Where("user_id = ?", id).Delete(&models.Notification{})
// DeleteNotifications : Erase notifications from a user
func DeleteNotifications(id uint, all bool) { //
if all {
models.ORM.Where("user_id = ?", id).Delete(&models.Notification{})
} else {
models.ORM.Where("user_id = ? AND read = ?", id, true).Delete(&models.Notification{})
}
}