X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fhelpers%2Factor.ts;h=015b4a39ffb3a1d2afe2c9a4ad7ff7952e4916bb;hb=c1961762b31567057e32eb7432a6995a4a81075c;hp=12a7ace9fb7dbc1bdca9ef6a15b67c61720ceb56;hpb=0491173a61aed66205c017e0d7e0503ea316c144;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/helpers/actor.ts b/server/helpers/actor.ts index 12a7ace9f..015b4a39f 100644 --- a/server/helpers/actor.ts +++ b/server/helpers/actor.ts @@ -1,10 +1,13 @@ import { ActorModel } from '../models/activitypub/actor' +import * as Bluebird from 'bluebird' +import { MActorFull, MActorAccountChannelId } from '../types/models' -type ActorFetchByUrlType = 'all' | 'actor-and-association-ids' -function fetchActorByUrl (url: string, fetchType: ActorFetchByUrlType) { +type ActorFetchByUrlType = 'all' | 'association-ids' + +function fetchActorByUrl (url: string, fetchType: ActorFetchByUrlType): Bluebird { 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 {