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:
parent
2278895217
commit
4662b03501
@ -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)
|
||||
|
@ -56,7 +56,7 @@ contentRegistry.registerContentType({
|
||||
block.fields.fileId = fileId || ''
|
||||
resolve(block)
|
||||
},
|
||||
'.jpg,.jpeg,.png')
|
||||
'.jpg,.jpeg,.png,.gif')
|
||||
},
|
||||
)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user