Skip to content

Commit

Permalink
change name to volunteerPlatform
Browse files Browse the repository at this point in the history
  • Loading branch information
anmoltyagi1 committed Nov 6, 2023
1 parent 9935e3e commit 4ae8942
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 41 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;
20 changes: 0 additions & 20 deletions backend/typescript/services/implementations/volunteerSignup.ts

This file was deleted.

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;
21 changes: 0 additions & 21 deletions backend/typescript/services/interfaces/volunteerSignup.ts

This file was deleted.

0 comments on commit 4ae8942

Please sign in to comment.