-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: OauthService.revokeOauth()에서 oidc revoke 요청을 기다렸다가 성공 여부를 반환하도록 …
…수정 (#270)
- Loading branch information
1 parent
3aa6cbd
commit 5387fd6
Showing
3 changed files
with
25 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
src/main/java/com/dnd/runus/presentation/v1/oauth/dto/response/WithdrawResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package com.dnd.runus.presentation.v1.oauth.dto.response; | ||
|
||
public record WithdrawResponse( | ||
boolean isWithdrawSuccess | ||
) { | ||
} |