mirror of https://github.com/Chocobozzz/PeerTube
				
				
				
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			550 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			550 B
		
	
	
	
		
			TypeScript
		
	
	
import { HttpStatusCode, VideosOverview } from '@shared/models'
 | 
						|
import { AbstractCommand, OverrideCommandOptions } from '../shared'
 | 
						|
 | 
						|
export class OverviewsCommand extends AbstractCommand {
 | 
						|
 | 
						|
  getVideos (options: OverrideCommandOptions & {
 | 
						|
    page: number
 | 
						|
  }) {
 | 
						|
    const { page } = options
 | 
						|
    const path = '/api/v1/overviews/videos'
 | 
						|
 | 
						|
    const query = { page }
 | 
						|
 | 
						|
    return this.getRequestBody<VideosOverview>({
 | 
						|
      ...options,
 | 
						|
 | 
						|
      path,
 | 
						|
      query,
 | 
						|
      implicitToken: false,
 | 
						|
      defaultExpectedStatus: HttpStatusCode.OK_200
 | 
						|
    })
 | 
						|
  }
 | 
						|
}
 |