Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
elver5041 committed Nov 4, 2024
1 parent 3f8b829 commit 1819e60
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/EventService.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,14 +193,14 @@ export async function getUnregisteredHackersCount(event_id) {

export async function confirmAssistance(confirm_token) {
return fetchPlus({
Url: `/event/confirm-assistance`,
Url: `/event/confirm_assistance/`,
token: confirm_token,
});
}

export async function forceConfirmAssistance(event_id, user_id) {
return fetchPlus({
Url: `/event/force-confirm-assistance/${event_id}/${user_id}`,
Url: `/event/force/confirm_assistance/${event_id}/${user_id}`,
hasUserauth: true,
});
}
Expand Down

0 comments on commit 1819e60

Please sign in to comment.