Skip to content

Commit 9e7bed6

Browse files
committed
chore :: 자잘한 수정
1 parent 1f73b94 commit 9e7bed6

File tree

3 files changed

+13
-72
lines changed

3 files changed

+13
-72
lines changed

Projects/Modules/AppNetwork/Sources/Jwt/JwtPlugin.swift

Lines changed: 0 additions & 62 deletions
This file was deleted.

Projects/Presentation/Sources/Scene/AllTab/MyPage/MyPageViewController.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,5 @@ extension MyPageViewController: UIImagePickerControllerDelegate, UINavigationCon
136136
self?.profileImageData.accept(image?.jpegData(compressionQuality: 0.1) ?? Data())
137137
}
138138
}
139+
139140
}

Projects/Presentation/Sources/Scene/Test/TestViewController.swift

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import Moya
1212
import Core
1313
import Domain
1414
import DesignSystem
15+
import Data
1516

1617
public class TestViewController: UIViewController, Stepper {
1718
public var steps = PublishRelay<Step>()
@@ -25,21 +26,12 @@ public class TestViewController: UIViewController, Stepper {
2526
super.viewDidLoad()
2627

2728
view.backgroundColor = .background
28-
bind()
29+
// bind()
2930
}
3031
public override func viewDidLayoutSubviews() {
3132
layout()
3233
}
3334

34-
private func bind() {
35-
button1.buttonTap
36-
.bind {
37-
let alert = PassView()
38-
alert.modalTransitionStyle = .crossDissolve
39-
alert.modalPresentationStyle = .overFullScreen
40-
self.present(alert, animated: true)
41-
}.disposed(by: disposeBag)
42-
}
4335
// private func bind() {
4436
// button1.rx.tap
4537
// .bind {
@@ -113,3 +105,13 @@ public class TestViewController: UIViewController, Stepper {
113105
}
114106

115107
}
108+
109+
struct TestDTO: Codable {
110+
let accessToken: String
111+
let refreshToken: String
112+
113+
enum CodingKeys: String, CodingKey {
114+
case accessToken = "access_token"
115+
case refreshToken = "refresh_token"
116+
}
117+
}

0 commit comments

Comments
 (0)