summaryrefslogtreecommitdiffstats
path: root/api4/file.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/file.go')
-rw-r--r--api4/file.go12
1 files changed, 11 insertions, 1 deletions
diff --git a/api4/file.go b/api4/file.go
index 3c0944b89..f73a54fb4 100644
--- a/api4/file.go
+++ b/api4/file.go
@@ -10,6 +10,7 @@ import (
"net/url"
"strconv"
"strings"
+ "time"
"github.com/mattermost/mattermost-server/app"
"github.com/mattermost/mattermost-server/model"
@@ -69,6 +70,7 @@ func uploadFile(c *Context, w http.ResponseWriter, r *http.Request) {
return
}
+ now := time.Now()
var resStruct *model.FileUploadResponse
var appErr *model.AppError
@@ -100,6 +102,7 @@ func uploadFile(c *Context, w http.ResponseWriter, r *http.Request) {
[]io.ReadCloser{r.Body},
[]string{filename},
[]string{},
+ now,
)
} else {
m := r.MultipartForm
@@ -120,7 +123,14 @@ func uploadFile(c *Context, w http.ResponseWriter, r *http.Request) {
return
}
- resStruct, appErr = c.App.UploadMultipartFiles(FILE_TEAM_ID, channelId, c.Session.UserId, m.File["files"], m.Value["client_ids"])
+ resStruct, appErr = c.App.UploadMultipartFiles(
+ FILE_TEAM_ID,
+ channelId,
+ c.Session.UserId,
+ m.File["files"],
+ m.Value["client_ids"],
+ now,
+ )
}
if appErr != nil {