1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-03 08:45:40 +02:00

Adding gif support for boards (#2126)

* Adding gif support for boards

* Updating api
This commit is contained in:
Asaad Mahmood 2022-01-26 18:45:44 +05:00 committed by GitHub
parent 2278895217
commit 4662b03501
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -1320,6 +1320,7 @@ func (a *API) handleServeFile(w http.ResponseWriter, r *http.Request) {
// - application/json
// - image/jpg
// - image/png
// - image/gif
// parameters:
// - name: workspaceID
// in: path
@ -1370,6 +1371,10 @@ func (a *API) handleServeFile(w http.ResponseWriter, r *http.Request) {
contentType = "image/png"
}
if fileExtension == "gif" {
contentType = "image/gif"
}
w.Header().Set("Content-Type", contentType)
fileReader, err := a.app.GetFileReader(workspaceID, rootID, filename)

View File

@ -56,7 +56,7 @@ contentRegistry.registerContentType({
block.fields.fileId = fileId || ''
resolve(block)
},
'.jpg,.jpeg,.png')
'.jpg,.jpeg,.png,.gif')
},
)