aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/extra-utils/overviews
diff options
context:
space:
mode:
Diffstat (limited to 'shared/extra-utils/overviews')
-rw-r--r--shared/extra-utils/overviews/index.ts1
-rw-r--r--shared/extra-utils/overviews/overviews-command.ts23
2 files changed, 0 insertions, 24 deletions
diff --git a/shared/extra-utils/overviews/index.ts b/shared/extra-utils/overviews/index.ts
deleted file mode 100644
index e19551907..000000000
--- a/shared/extra-utils/overviews/index.ts
+++ /dev/null
@@ -1 +0,0 @@
1export * from './overviews-command'
diff --git a/shared/extra-utils/overviews/overviews-command.ts b/shared/extra-utils/overviews/overviews-command.ts
deleted file mode 100644
index 06b4892d2..000000000
--- a/shared/extra-utils/overviews/overviews-command.ts
+++ /dev/null
@@ -1,23 +0,0 @@
1import { HttpStatusCode, VideosOverview } from '@shared/models'
2import { AbstractCommand, OverrideCommandOptions } from '../shared'
3
4export class OverviewsCommand extends AbstractCommand {
5
6 getVideos (options: OverrideCommandOptions & {
7 page: number
8 }) {
9 const { page } = options
10 const path = '/api/v1/overviews/videos'
11
12 const query = { page }
13
14 return this.getRequestBody<VideosOverview>({
15 ...options,
16
17 path,
18 query,
19 implicitToken: false,
20 defaultExpectedStatus: HttpStatusCode.OK_200
21 })
22 }
23}