8fffe21a7b
Only display urls in general object, and paginate video comments, shares, likes and dislikes
11 lines
243 B
TypeScript
11 lines
243 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)
|
|
.end()
|
|
}
|
|
|
|
export {
|
|
activityPubResponse
|
|
}
|