1
0
mirror of https://github.com/nolanlawson/pinafore synced 2025-02-03 07:15:47 +01:00

11 lines
398 B
JavaScript
Raw Normal View History

2018-03-01 21:21:49 -08:00
import { auth, basename } from './utils'
import { postWithTimeout } from '../_utils/ajax'
2018-03-05 22:36:54 -08:00
export async function uploadMedia (instanceName, accessToken, file, description) {
2018-03-01 21:21:49 -08:00
let formData = new FormData()
formData.append('file', file)
2018-03-05 22:36:54 -08:00
formData.append('description', description)
2018-03-01 21:21:49 -08:00
let url = `${basename(instanceName)}/api/v1/media`
return postWithTimeout(url, formData, auth(accessToken))
2018-03-02 17:54:38 -08:00
}