Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Update interaction.go

Cette révision appartient à :
kilo 2017-10-31 06:22:13 +01:00 révisé par GitHub
Parent 5268d25a2d
révision 97588fa908
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

@ -32,6 +32,10 @@ func Delete(id uint) (*models.TorrentReport, int, error) {
return &torrentReport, http.StatusOK, nil
}
func DeleteAll() {
models.ORM.Delete(&models.TorrentReport{})
}
func findOrderBy(parameters Query, orderBy string, limit int, offset int, countAll bool) (
torrentReports []models.TorrentReport, count int, err error,
) {