Init commit
This commit is contained in:
16
server/core/lib/model-loaders/actor.ts
Normal file
16
server/core/lib/model-loaders/actor.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { ActorModel } from '../../models/actor/actor.js'
|
||||
import { MActorAccountChannelId, MActorFull } from '../../types/models/index.js'
|
||||
|
||||
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 {
|
||||
type ActorLoadByUrlType,
|
||||
|
||||
loadActorByUrl
|
||||
}
|
||||
Reference in New Issue
Block a user