diff options
author | Nassim Bounouas <NassimBounouas@users.noreply.github.com> | 2019-06-21 08:49:35 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-06-21 08:49:35 +0200 |
commit | 4e9fa5b7e9ca6030a5fe2e9b0520bf8fa18e5877 (patch) | |
tree | f7fb09aa655f954b8d9833cd2215f6fada5721a6 /shared/extra-utils | |
parent | d1ea2a988d05e1eca4066efb99c5f943f5267a78 (diff) | |
download | PeerTube-4e9fa5b7e9ca6030a5fe2e9b0520bf8fa18e5877.tar.gz PeerTube-4e9fa5b7e9ca6030a5fe2e9b0520bf8fa18e5877.tar.zst PeerTube-4e9fa5b7e9ca6030a5fe2e9b0520bf8fa18e5877.zip |
Feature/subject in contact form (#1926)
* #1915 Add a subject to contact form and add it to email sent
* #1915 Add subject to contact form tests
* #1915 Contact form test corrected && tslint correction
Diffstat (limited to 'shared/extra-utils')
-rw-r--r-- | shared/extra-utils/server/contact-form.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/shared/extra-utils/server/contact-form.ts b/shared/extra-utils/server/contact-form.ts index 80394cf99..e002e03dd 100644 --- a/shared/extra-utils/server/contact-form.ts +++ b/shared/extra-utils/server/contact-form.ts | |||
@@ -5,6 +5,7 @@ function sendContactForm (options: { | |||
5 | url: string, | 5 | url: string, |
6 | fromEmail: string, | 6 | fromEmail: string, |
7 | fromName: string, | 7 | fromName: string, |
8 | subject: string, | ||
8 | body: string, | 9 | body: string, |
9 | expectedStatus?: number | 10 | expectedStatus?: number |
10 | }) { | 11 | }) { |
@@ -13,6 +14,7 @@ function sendContactForm (options: { | |||
13 | const body: ContactForm = { | 14 | const body: ContactForm = { |
14 | fromEmail: options.fromEmail, | 15 | fromEmail: options.fromEmail, |
15 | fromName: options.fromName, | 16 | fromName: options.fromName, |
17 | subject: options.subject, | ||
16 | body: options.body | 18 | body: options.body |
17 | } | 19 | } |
18 | return request(options.url) | 20 | return request(options.url) |