Include both a log entry and the blocked mime type in the gitea log when
an attachment upload is blocked.

Chosen log level is info; this may need to be dialed down to trace.
This commit is contained in:
Mahmoud Al-Qudsi 2018-03-04 18:51:10 -06:00 коммит произвёл Lunny Xiao
Родитель 19d5192e8c
Коммит 171914e9a7
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -55,6 +55,7 @@ func UploadAttachment(ctx *context.Context) {
}
if !allowed {
log.Info("Attachment with type %s blocked from upload", fileType)
ctx.Error(400, ErrFileTypeForbidden.Error())
return
}