Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0

Stop using deprecated HasAdmin() function

Cette révision appartient à :
kilo 2017-11-09 15:53:55 +01:00 révisé par GitHub
Parent 8f2bf884ab
révision b036780725
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

@ -25,7 +25,7 @@ func TorrentDeleteUserPanel(c *gin.Context) {
torrent.Uploader = &models.User{}
}
_, username := torrents.HideUser(torrent.UploaderID, torrent.Uploader.Username, torrent.Hidden)
if currentUser.HasAdmin() { // We hide username on log activity if user is not admin and torrent is hidden
if currentUser.IsModerator() { // We hide username on log activity if user is not admin and torrent is hidden
activities.Log(&models.User{}, torrent.Identifier(), "delete", "torrent_deleted_by", strconv.Itoa(int(torrent.ID)), username, currentUser.Username)
} else {
activities.Log(&models.User{}, torrent.Identifier(), "delete", "torrent_deleted_by", strconv.Itoa(int(torrent.ID)), username, username)