diff options
Diffstat (limited to 'shared/extra-utils/custom-pages/custom-pages-command.ts')
-rw-r--r-- | shared/extra-utils/custom-pages/custom-pages-command.ts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/shared/extra-utils/custom-pages/custom-pages-command.ts b/shared/extra-utils/custom-pages/custom-pages-command.ts new file mode 100644 index 000000000..a062c9774 --- /dev/null +++ b/shared/extra-utils/custom-pages/custom-pages-command.ts | |||
@@ -0,0 +1,30 @@ | |||
1 | import { CustomPage } from '@shared/models' | ||
2 | import { HttpStatusCode } from '../../core-utils/miscs/http-error-codes' | ||
3 | import { AbstractCommand, OverrideCommandOptions } from '../shared' | ||
4 | |||
5 | export class CustomPagesCommand extends AbstractCommand { | ||
6 | |||
7 | getInstanceHomepage (options: OverrideCommandOptions = {}) { | ||
8 | const path = '/api/v1/custom-pages/homepage/instance' | ||
9 | |||
10 | return this.getRequestBody<CustomPage>({ | ||
11 | ...options, | ||
12 | path, | ||
13 | defaultExpectedStatus: HttpStatusCode.OK_200 | ||
14 | }) | ||
15 | } | ||
16 | |||
17 | updateInstanceHomepage (options: OverrideCommandOptions & { | ||
18 | content: string | ||
19 | }) { | ||
20 | const { content } = options | ||
21 | const path = '/api/v1/custom-pages/homepage/instance' | ||
22 | |||
23 | return this.putBodyRequest({ | ||
24 | ...options, | ||
25 | path, | ||
26 | fields: { content }, | ||
27 | defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204 | ||
28 | }) | ||
29 | } | ||
30 | } | ||