Merge pull request #42 from matthazinski/remote_upload_params

Add support for deletion key and expiry in remote upload
This commit is contained in:
Andrei Marcu 2015-10-07 00:11:38 -04:00
commit 3d55697adc
1 changed files with 2 additions and 0 deletions

View File

@ -150,6 +150,8 @@ func uploadRemote(c web.C, w http.ResponseWriter, r *http.Request) {
upReq.filename = filepath.Base(grabUrl.Path)
upReq.src = resp.Body
upReq.deletionKey = r.FormValue("deletekey")
upReq.expiry = parseExpiry(r.FormValue("expiry"))
upload, err := processUpload(upReq)