assigners can assign volunteer to a team

This commit is contained in:
memeriau
2022-04-16 18:30:47 +02:00
parent f0f08a91ed
commit 7c96636477
8 changed files with 145 additions and 6 deletions

View File

@@ -6,6 +6,7 @@ import {
VolunteerAsks,
VolunteerParticipationDetails,
VolunteerTeamWishes,
VolunteerTeamAssign,
VolunteerWithoutId,
} from "./volunteers"
@@ -34,3 +35,6 @@ export const volunteerParticipationDetailsSet =
serviceAccessors.securedCustomPost<[number, Partial<VolunteerParticipationDetails>]>(
"ParticipationDetailsSet"
)
export const volunteerTeamAssignSet =
serviceAccessors.securedCustomPost<[number, Partial<VolunteerTeamAssign>]>("TeamAssignSet")