]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/lib/activitypub/activity.ts
cccb7b1c1d4a081dc90e89dec2faee5dba0ecf00
[github/Chocobozzz/PeerTube.git] / server / lib / activitypub / activity.ts
1 function getAPId (object: string | { id: string }) {
2 if (typeof object === 'string') return object
3
4 return object.id
5 }
6
7 export {
8 getAPId
9 }