diff --git a/backend/typescript/services/implementations/volunteerSignup.ts b/backend/typescript/services/implementations/volunteerSignup.ts index f1b1a13..78bf909 100644 --- a/backend/typescript/services/implementations/volunteerSignup.ts +++ b/backend/typescript/services/implementations/volunteerSignup.ts @@ -2,9 +2,7 @@ import IVolunteerSignup from "../interfaces/volunteerSignup"; class VolunteerSignup implements IVolunteerSignup{ - async getVolunteerSignup(): Promise { - - } + async getVolunteerSignup(id: string): Promise {} async postVolunteerSignup(): Promise { diff --git a/backend/typescript/services/interfaces/volunteerSignup.ts b/backend/typescript/services/interfaces/volunteerSignup.ts index a091ff0..24a2c54 100644 --- a/backend/typescript/services/interfaces/volunteerSignup.ts +++ b/backend/typescript/services/interfaces/volunteerSignup.ts @@ -1,9 +1,11 @@ +import { volunteerPlatformSignUp } from "@prisma/client"; + interface IVolunteerSignup { /** * Gets volunteer signup */ - getVolunteerSignup(): Promise + getVolunteerSignup(id: string): Promise; /** * Posts volunteer signup