mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00

* #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
6 lines
105 B
TypeScript
6 lines
105 B
TypeScript
export interface ContactForm {
|
|
fromEmail: string
|
|
fromName: string
|
|
subject: string
|
|
body: string
|
|
}
|