mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			19 lines
		
	
	
		
			354 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			354 B
		
	
	
	
		
			TypeScript
		
	
	
import { makeGetRequest } from '../requests/requests'
 | 
						|
 | 
						|
function getVideosOverview (url: string, useCache = false) {
 | 
						|
  const path = '/api/v1/overviews/videos'
 | 
						|
 | 
						|
  const query = {
 | 
						|
    t: useCache ? undefined : new Date().getTime()
 | 
						|
  }
 | 
						|
 | 
						|
  return makeGetRequest({
 | 
						|
    url,
 | 
						|
    path,
 | 
						|
    query,
 | 
						|
    statusCodeExpected: 200
 | 
						|
  })
 | 
						|
}
 | 
						|
 | 
						|
export { getVideosOverview }
 |