Skip to content

Commit

Permalink
feat #164: isPresent 카멜케이스 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
minsangKang committed Sep 29, 2024
1 parent 75dd0db commit f6e3684
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions Project_Timer.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2708,7 +2708,7 @@
CODE_SIGN_ENTITLEMENTS = Project_Timer/Project_TimerDevelop.entitlements;
CODE_SIGN_IDENTITY = "Apple Development";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = 2C96RNDN63;
"ENABLE_HARDENED_RUNTIME[sdk=macosx*]" = YES;
INFOPLIST_FILE = Project_Timer/Info.plist;
Expand All @@ -2717,7 +2717,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 7.17.2;
MARKETING_VERSION = 7.17.3;
PRODUCT_BUNDLE_IDENTIFIER = "$(APP_BUNDLE_ID)";
PRODUCT_NAME = "$(APP_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -2952,7 +2952,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = Project_Timer/Project_TimerDebug.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = 2C96RNDN63;
"ENABLE_HARDENED_RUNTIME[sdk=macosx*]" = YES;
INFOPLIST_FILE = Project_Timer/Info.plist;
Expand All @@ -2961,7 +2961,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 7.17.2;
MARKETING_VERSION = 7.17.3;
PRODUCT_BUNDLE_IDENTIFIER = "$(APP_BUNDLE_ID)";
PRODUCT_NAME = "$(APP_NAME)";
SUPPORTS_MACCATALYST = YES;
Expand All @@ -2979,7 +2979,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = Project_Timer/Project_Timer.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 2;
CURRENT_PROJECT_VERSION = 1;
DEVELOPMENT_TEAM = 2C96RNDN63;
"ENABLE_HARDENED_RUNTIME[sdk=macosx*]" = YES;
INFOPLIST_FILE = Project_Timer/Info.plist;
Expand All @@ -2988,7 +2988,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 7.17.2;
MARKETING_VERSION = 7.17.3;
PRODUCT_BUNDLE_IDENTIFIER = "$(APP_BUNDLE_ID)";
PRODUCT_NAME = "$(APP_NAME)";
SUPPORTS_MACCATALYST = YES;
Expand Down
4 changes: 2 additions & 2 deletions Project_Timer/Data/Response/CheckUsernameResponse.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import Foundation
struct CheckUsernameResponse: Decodable {
let code: String
let message: String
let is_present: Bool
let isPresent: Bool
}

extension CheckUsernameResponse {
func toDomain() -> CheckUsernameInfo {
return .init(
detailInfo: .init(code: self.code, message: self.message),
isNotExist: !self.is_present
isNotExist: !self.isPresent
)
}
}

0 comments on commit f6e3684

Please sign in to comment.