Skip to content

Commit

Permalink
[MERGE] #255 -> develop
Browse files Browse the repository at this point in the history
[FIX/#255] νšŒμ›κ°€μž… / μ„œλ²„ν†΅μ‹  μˆ˜μ •
  • Loading branch information
leeeyubin authored Sep 23, 2024
2 parents a247ff1 + 4c7e9c3 commit df2d628
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ class AuthDataSourceImpl @Inject constructor(
override suspend fun postSignUp(
authId: String,
request: SignUpRequestDto
): BaseResponse<SignUpResponseDto> = authService.postSignUp(authId, request)
): BaseResponse<SignUpResponseDto> = authService.postSignUp("Bearer $authId", request)
}
2 changes: 1 addition & 1 deletion data/src/main/java/com/terning/data/service/AuthService.kt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface AuthService {

@POST("api/v1/auth/sign-up")
suspend fun postSignUp(
@Header("authId") authId: String,
@Header("Authorization") authId: String,
@Body body: SignUpRequestDto,
): BaseResponse<SignUpResponseDto>
}

0 comments on commit df2d628

Please sign in to comment.