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