Send follow/accept
[oweals/peertube.git] / server / lib / activitypub / process-flag.ts
1 import {
2   ActivityCreate,
3   VideoTorrentObject,
4   VideoChannelObject
5 } from '../../../shared'
6
7 function processFlagActivity (activity: ActivityCreate) {
8   return Promise.resolve(undefined)
9 }
10
11 // ---------------------------------------------------------------------------
12
13 export {
14   processFlagActivity
15 }
16
17 // ---------------------------------------------------------------------------