-
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.
Browse files
Browse the repository at this point in the history
[Feature] 애플로그인 회원탈퇴 정책 반영
- Loading branch information
Showing
20 changed files
with
594 additions
and
103 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
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
15 changes: 15 additions & 0 deletions
15
HongikYeolgong2/Data/DTO/Auth/ASRevokeTokenRequestDTO.swift
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,15 @@ | ||
// | ||
// ASRevokeTokenRequestDTO.swift | ||
// HongikYeolgong2 | ||
// | ||
// Created by 권석기 on 11/12/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct ASRevokeTokenRequestDTO { | ||
let client_id: String | ||
let client_secret: String | ||
let token: String | ||
let token_type_hint: String | ||
} |
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,17 @@ | ||
// | ||
// ASTokenRequestDTO.swift | ||
// HongikYeolgong2 | ||
// | ||
// Created by 권석기 on 11/11/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct ASTokenRequestDTO: Encodable { | ||
let client_id: String | ||
let client_secret: String | ||
let grant_type: String | ||
let code: String | ||
var refresh_token: String? | ||
var redirect_uri: String? | ||
} |
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,17 @@ | ||
// | ||
// ASTokenResponseDTO.swift | ||
// HongikYeolgong2 | ||
// | ||
// Created by 권석기 on 11/11/24. | ||
// | ||
|
||
import Foundation | ||
|
||
struct ASTokenResponseDTO: Decodable { | ||
let accessToken: String | ||
let expiresIn: Int | ||
let idToken: String | ||
let refreshToken: String | ||
let tokenType: String | ||
} | ||
|
Oops, something went wrong.