PeerTube/server/lib/activitypub/process-flag.ts

18 lines
386 B
TypeScript
Raw Normal View History

2017-11-09 10:51:58 -06:00
import {
ActivityCreate,
VideoTorrentObject,
VideoChannelObject
} from '../../../shared'
function processFlagActivity (activity: ActivityCreate) {
2017-11-10 10:27:49 -06:00
return Promise.resolve(undefined)
2017-11-09 10:51:58 -06:00
}
// ---------------------------------------------------------------------------
export {
processFlagActivity
}
// ---------------------------------------------------------------------------