Skip to content

Commit 9094a77

Browse files
committed
fix: 참가자 포탈에서 잘못된 비밀번호 변경 메소드 수정
1 parent d5f404c commit 9094a77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/common/src/apis/participant_portal_api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace BackendParticipantPortalAPIs {
2323
export const signOut = (client: BackendAPIClient) => () => client.delete<void>("v1/participant-portal/user/signout/");
2424

2525
export const changePassword = (client: BackendAPIClient) => (data: ParticipantPortalAPISchemas.UserChangePasswordSchema) =>
26-
client.post<void, ParticipantPortalAPISchemas.UserChangePasswordSchema>("v1/participant-portal/user/password/", data);
26+
client.put<void, ParticipantPortalAPISchemas.UserChangePasswordSchema>("v1/participant-portal/user/password/", data);
2727

2828
export const listPublicFiles = (client: BackendAPIClient) => () =>
2929
client.get<ParticipantPortalAPISchemas.PublicFileSchema[]>("v1/participant-portal/public-file/");

0 commit comments

Comments
 (0)