generated from nhcarrigan/template
feat: add form for submitting testimonials
Node.js CI / Lint and Test (pull_request) Failing after 1m15s
Node.js CI / Lint and Test (pull_request) Failing after 1m15s
This commit is contained in:
@@ -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;
|
||||
}
|
||||
@@ -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,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user