X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Factor.ts;h=5f742505bacc629f97232b4c21130d8d0cedfd31;hb=0ae3ebb03edf8b6a6d74666f006d7373e393e40d;hp=12a7ace9fb7dbc1bdca9ef6a15b67c61720ceb56;hpb=e587e0ecee5bec43a225995948faaa4bc97f080a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/actor.ts b/server/helpers/actor.ts index 12a7ace9f..5f742505b 100644 --- a/server/helpers/actor.ts +++ b/server/helpers/actor.ts @@ -1,10 +1,13 @@ -import { ActorModel } from '../models/activitypub/actor' -type ActorFetchByUrlType = 'all' | 'actor-and-association-ids' -function fetchActorByUrl (url: string, fetchType: ActorFetchByUrlType) { +import { ActorModel } from '../models/actor/actor' +import { MActorAccountChannelId, MActorFull } from '../types/models' + +type ActorFetchByUrlType = 'all' | 'association-ids' + +function fetchActorByUrl (url: string, fetchType: ActorFetchByUrlType): Promise { if (fetchType === 'all') return ActorModel.loadByUrlAndPopulateAccountAndChannel(url) - if (fetchType === 'actor-and-association-ids') return ActorModel.loadByUrl(url) + if (fetchType === 'association-ids') return ActorModel.loadByUrl(url) } export {