Skip to content

Commit

Permalink
chore :: 자잘한 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
cyj513 committed Nov 22, 2024
1 parent 1f73b94 commit 9e7bed6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 72 deletions.
62 changes: 0 additions & 62 deletions Projects/Modules/AppNetwork/Sources/Jwt/JwtPlugin.swift

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,5 @@ extension MyPageViewController: UIImagePickerControllerDelegate, UINavigationCon
self?.profileImageData.accept(image?.jpegData(compressionQuality: 0.1) ?? Data())
}
}

}
22 changes: 12 additions & 10 deletions Projects/Presentation/Sources/Scene/Test/TestViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import Moya
import Core
import Domain
import DesignSystem
import Data

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

view.backgroundColor = .background
bind()
// bind()
}
public override func viewDidLayoutSubviews() {
layout()
}

private func bind() {
button1.buttonTap
.bind {
let alert = PassView()
alert.modalTransitionStyle = .crossDissolve
alert.modalPresentationStyle = .overFullScreen
self.present(alert, animated: true)
}.disposed(by: disposeBag)
}
// private func bind() {
// button1.rx.tap
// .bind {
Expand Down Expand Up @@ -113,3 +105,13 @@ public class TestViewController: UIViewController, Stepper {
}

}

struct TestDTO: Codable {
let accessToken: String
let refreshToken: String

enum CodingKeys: String, CodingKey {
case accessToken = "access_token"
case refreshToken = "refresh_token"
}
}

0 comments on commit 9e7bed6

Please sign in to comment.