Skip to content

Commit

Permalink
[webclient] facebook login api 수정 (#196)
Browse files Browse the repository at this point in the history
  • Loading branch information
ars-ki-00 authored Dec 27, 2024
1 parent de13ee4 commit 7b22ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/snutt-api/src/apis/snutt/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const getSnuttApis = ({ callWithToken, callWithoutToken }: GetApiSpecsPar
'POST /auth/login/facebook': ({ body }: { body: { token: string } }) =>
callWithoutToken<SuccessResponse<{ token: string; user_id: string }> | ErrorResponse<403, 4097>>({
method: 'post',
path: `/v1/auth/facebook`,
path: `/v1/auth/login/facebook`,
body,
}),
'POST /auth/login/google': ({ body }: { body: { token: string } }) =>
Expand Down

0 comments on commit 7b22ecc

Please sign in to comment.