1
0
Fork 0
peertube/server/helpers/custom-validators/activitypub/view.ts
Chocobozzz 848f499def
Prepare Dislike/Flag/View fixes
For now we Create these activities, but we should just send them
directly.

This fix handles correctly direct Dislikes/Flags/Views, we'll implement
the sending correctly these activities in the next peertube version
2019-01-15 14:45:09 +01:00

13 lines
336 B
TypeScript

import { isActivityPubUrlValid } from './misc'
function isViewActivityValid (activity: any) {
return activity.type === 'View' &&
isActivityPubUrlValid(activity.actor) &&
isActivityPubUrlValid(activity.object)
}
// ---------------------------------------------------------------------------
export {
isViewActivityValid
}