-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9935e3e
commit 4ae8942
Showing
4 changed files
with
41 additions
and
41 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
backend/typescript/services/implementations/volunteerPlatformSignup.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
20
backend/typescript/services/implementations/volunteerSignup.ts
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
backend/typescript/services/interfaces/volunteerPlatformSignup.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file was deleted.
Oops, something went wrong.