aboutsummaryrefslogblamecommitdiffhomepage
path: root/server/lib/model-loaders/actor.ts
blob: 1355d8ee2c836ae74177b2d94e64b33828d8e6fa (plain) (tree)
1
2
3
4
5
6
7
8
9
 

                                                                       
 
                                                   
 
                                                                                                                    

                                                                                       
                                                                       


        


                     
 
import { ActorModel } from '../../models/actor/actor'
import { MActorAccountChannelId, MActorFull } from '../../types/models'

type ActorLoadByUrlType = 'all' | 'association-ids'

function loadActorByUrl (url: string, fetchType: ActorLoadByUrlType): Promise<MActorFull | MActorAccountChannelId> {
  if (fetchType === 'all') return ActorModel.loadByUrlAndPopulateAccountAndChannel(url)

  if (fetchType === 'association-ids') return ActorModel.loadByUrl(url)
}

export {
  ActorLoadByUrlType,

  loadActorByUrl
}