1
0
Fork 0
peertube/server/lib/uploadx.ts

15 lines
380 B
TypeScript
Raw Normal View History

import express from 'express'
import { getResumableUploadPath } from '@server/helpers/upload'
import { Uploadx } from '@uploadx/core'
2021-12-17 14:49:52 +00:00
const uploadx = new Uploadx({
directory: getResumableUploadPath(),
// Could be big with thumbnails/previews
maxMetadataSize: '10MB'
})
uploadx.getUserId = (_, res: express.Response) => res.locals.oauth?.token.user.id
export {
uploadx
}