Skip to content

Commit

Permalink
Merge pull request #17 from uwblueprint/vaaranan-yaser-annie/create-v…
Browse files Browse the repository at this point in the history
…olunteer-signup-implementation-and-interface

Vaaranan yaser annie/create volunteer signup implementation and interface
  • Loading branch information
anmoltyagi1 authored Nov 6, 2023
2 parents 5a61cec + 4ae8942 commit 79fab8e
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import IVolunteerPlatformSignup from "../interfaces/volunteerPlatformSignup";

class VolunteerPlatformSignup implements IVolunteerPlatformSignup{
// ADD PARAMETER AND RETURN TYPES IN NEXT TICKET

async getVolunteerPlatformSignup(): Promise<void> {
// Implementation to be added
}

async postVolunteerPlatformSignup(): Promise<void> {
// Implementation to be added
}

async editVolunteerPlatformSignup(): Promise<void> {
// Implementation to be added
}

}

export default VolunteerPlatformSignup;
21 changes: 21 additions & 0 deletions backend/typescript/services/interfaces/volunteerPlatformSignup.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
interface IVolunteerPlatformSignup {
// ADD PARAMETER AND RETURN TYPES IN NEXT TICKET

/**
* Gets volunteer signup
*/
getVolunteerPlatformSignup(): Promise<void>;

/**
* Posts volunteer signup
*/
postVolunteerPlatformSignup(): Promise<void>

/**
* Edits volunteer signup
*/
editVolunteerPlatformSignup(): Promise<void>

}

export default IVolunteerPlatformSignup;

0 comments on commit 79fab8e

Please sign in to comment.