1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 17:59:37 +02:00
Peertube/server/controllers/activitypub/utils.ts
2021-05-12 14:12:14 +02:00

10 lines
224 B
TypeScript

import * as express from 'express'
function activityPubResponse (data: any, res: express.Response) {
return res.type('application/activity+json; charset=utf-8')
.json(data)
}
export {
activityPubResponse
}