]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/server-commands/videos/video-stats-command.ts
Add filter by start/end date overall stats in api
[github/Chocobozzz/PeerTube.git] / shared / server-commands / videos / video-stats-command.ts
index bd4808f63dc12e8501eab317baef4835c499c746..b9b99bfb57ec0f9e2a9f140439e71e1ff5e8f081 100644 (file)
@@ -6,6 +6,8 @@ export class VideoStatsCommand extends AbstractCommand {
 
   getOverallStats (options: OverrideCommandOptions & {
     videoId: number | string
+    startDate?: string
+    endDate?: string
   }) {
     const path = '/api/v1/videos/' + options.videoId + '/stats/overall'
 
@@ -13,6 +15,8 @@ export class VideoStatsCommand extends AbstractCommand {
       ...options,
       path,
 
+      query: pick(options, [ 'startDate', 'endDate' ]),
+
       implicitToken: true,
       defaultExpectedStatus: HttpStatusCode.OK_200
     })