Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IDLE-000] 로그인시 비밀번화입력 숨김처리 #68

Merged
merged 3 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/merge_to_develop_on_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
run: |
cd project
tuist install
tuist test
make test



Expand Down
3 changes: 3 additions & 0 deletions project/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Module creation

test:
TUIST_ROOT_DIR=${PWD} tuist test

generate:
TUIST_ROOT_DIR=${PWD} tuist generate

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public enum IdleInfoPlist {
"NSAppTransportSecurity" : [
"NSAllowsArbitraryLoads" : true
],

"UILaunchStoryboardName": "LaunchScreen.storyboard",
"UIApplicationSceneManifest": [
"UIApplicationSupportsMultipleScenes": false,
Expand All @@ -34,6 +35,16 @@ public enum IdleInfoPlist {
// 멀티 스크린 미지원
"UIRequiresFullScreen": true,

// 지원하는 화면 모드
"UISupportedInterfaceOrientations" : [
"UIInterfaceOrientationPortrait"
],

// iPad 지원하는 화면 모드
"UISupportedInterfaceOrientations~ipad" : [
"UIInterfaceOrientationPortrait"
],

"NMFClientId": "$(NAVER_API_CLIENT_ID)",

// 앱추적 허용 메세지
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public class CenterLoginViewController: BaseViewController {
placeHolderText: "비밀번호를 입력해주세요.",
isCompletionImageAvailable: false
)
field.uITextField.isSecureTextEntry = true

return field
}()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,11 @@ public class CenterRecruitmentPostBoardVM: BaseViewModel, CenterRecruitmentPostB
title: "채용을 종료하시겠어요?",
description: "채용 종료 시 지원자 정보는 초기화됩니다.",
acceptButtonLabelText: "종료하기",
cancelButtonLabelText: "취소하기"
) { [closePostConfirmed] in
closePostConfirmed.accept(postId)
}
cancelButtonLabelText: "취소하기",
onAccepted: { [closePostConfirmed] in
closePostConfirmed.accept(postId)
}
)
return vm
})
.asDriver(onErrorDriveWith: .never())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

import UIKit
import RootFeature
import ConcreteUseCase
import ConcreteRepository

class SceneDelegate: UIResponder, UIWindowSceneDelegate {

Expand Down
Loading