mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 12:15:43 +01:00
Log attachment blocked events (#3615)
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:
parent
19d5192e8c
commit
171914e9a7
1 changed files with 1 additions and 0 deletions
|
@ -55,6 +55,7 @@ func UploadAttachment(ctx *context.Context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if !allowed {
|
if !allowed {
|
||||||
|
log.Info("Attachment with type %s blocked from upload", fileType)
|
||||||
ctx.Error(400, ErrFileTypeForbidden.Error())
|
ctx.Error(400, ErrFileTypeForbidden.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue