]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/lib/model-loaders/actor.ts
Merge remote-tracking branch 'weblate/develop' into develop
[github/Chocobozzz/PeerTube.git] / server / lib / model-loaders / actor.ts
1
2 import { ActorModel } from '../../models/actor/actor'
3 import { MActorAccountChannelId, MActorFull } from '../../types/models'
4
5 type ActorLoadByUrlType = 'all' | 'association-ids'
6
7 function loadActorByUrl (url: string, fetchType: ActorLoadByUrlType): Promise<MActorFull | MActorAccountChannelId> {
8 if (fetchType === 'all') return ActorModel.loadByUrlAndPopulateAccountAndChannel(url)
9
10 if (fetchType === 'association-ids') return ActorModel.loadByUrl(url)
11 }
12
13 export {
14 ActorLoadByUrlType,
15
16 loadActorByUrl
17 }