Refactor Notifications into Asks, replace all <Link> by <a>

This commit is contained in:
pikiou
2022-03-29 06:31:03 +02:00
parent 70b53c5af8
commit 4273ea1603
25 changed files with 636 additions and 663 deletions

View File

@@ -3,7 +3,7 @@ import {
elementName,
Volunteer,
VolunteerDayWishes,
VolunteerNotifs,
VolunteerAsks,
VolunteerParticipationDetails,
VolunteerTeamWishes,
VolunteerWithoutId,
@@ -21,8 +21,8 @@ export const volunteerLogin =
export const volunteerForgot = serviceAccessors.customPost<[{ email: string }]>("Forgot")
export const volunteerNotifsSet =
serviceAccessors.securedCustomPost<[number, Partial<VolunteerNotifs>]>("NotifsSet")
export const volunteerAsksSet =
serviceAccessors.securedCustomPost<[number, Partial<VolunteerAsks>]>("AsksSet")
export const volunteerTeamWishesSet =
serviceAccessors.securedCustomPost<[number, Partial<VolunteerTeamWishes>]>("TeamWishesSet")