feat: add form for submitting testimonials
Node.js CI / Lint and Test (pull_request) Failing after 1m15s

This commit is contained in:
2025-02-20 15:40:31 -08:00
parent 439df9968a
commit 56e2b391b2
13 changed files with 219 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
/**
* @copyright nhcarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
export interface Testimonial {
consent: boolean;
content: string;
email: string;
firstName: string;
lastName: string;
}
+2
View File
@@ -11,6 +11,7 @@ import type { Event } from "./forms/event.js";
import type { Meeting } from "./forms/meeting.js";
import type { Mentorship } from "./forms/mentorship.js";
import type { Staff } from "./forms/staff.js";
import type { Testimonial } from "./forms/testimonial.js";
import type { ReviewRequest } from "./requests/review.js";
import type { DataResponse } from "./responses/data.js";
import type { ErrorResponse } from "./responses/error.js";
@@ -28,4 +29,5 @@ export type {
DataResponse,
ErrorResponse,
SuccessResponse,
Testimonial,
};