Add flyingsquare ad

This commit is contained in:
2021-11-25 19:31:23 +01:00
parent 3eedbdf686
commit 0838e68c48
5 changed files with 37 additions and 5 deletions

View File

@@ -63,12 +63,13 @@ func (wc *WebController) serveUserExportFiles(
writeCSVLine(
w, "id", "name", "size", "type", "date_upload", "date_last_view",
"views", "downloads", "bandwidth_used",
"views", "downloads", "bandwidth_used", "bandwidth_used_paid",
)
for _, file := range files.Files {
writeCSVLine(
w, file.ID, file.Name, file.Size, file.MimeType, file.DateUpload,
file.DateLastView, file.Views, file.Downloads, file.BandwidthUsed,
file.BandwidthUsedPaid,
)
}
}