mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			18 lines
		
	
	
		
			513 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			513 B
		
	
	
	
		
			TypeScript
		
	
	
| 
 | |
| 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
 | |
| }
 |