]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - shared/extra-utils/server/contact-form-command.ts
Refactor requests
[github/Chocobozzz/PeerTube.git] / shared / extra-utils / server / contact-form-command.ts
CommitLineData
c0e8b12e 1import { HttpStatusCode } from '@shared/models'
a9c58393
C
2import { ContactForm } from '../../models/server'
3import { AbstractCommand, OverrideCommandOptions } from '../shared'
4
5export class ContactFormCommand extends AbstractCommand {
6
7 send (options: OverrideCommandOptions & {
8 fromEmail: string
9 fromName: string
10 subject: string
11 body: string
12 }) {
13 const path = '/api/v1/server/contact'
14
15 const body: ContactForm = {
16 fromEmail: options.fromEmail,
17 fromName: options.fromName,
18 subject: options.subject,
19 body: options.body
20 }
21
22 return this.postBodyRequest({
23 ...options,
24
25 path,
a9c58393 26 fields: body,
a1637fa1 27 implicitToken: false,
a9c58393
C
28 defaultExpectedStatus: HttpStatusCode.NO_CONTENT_204
29 })
30 }
31}