Skip to content

Feature/#78 login #83

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

Merged
merged 10 commits into from
Feb 19, 2025
Merged

Feature/#78 login #83

merged 10 commits into from
Feb 19, 2025

Conversation

ashwon12
Copy link
Contributor

@ashwon12 ashwon12 commented Feb 18, 2025

💡 Issue

🌱 Key changes

  • 로그인 API 연동
  • 로그인 시 약관 & 개인 정보 처리 방침 노션으로 이동
  • API 공통 에러코드 추가

✅ To Reviewers

COM 으로 시작하는 API 공통 에러 Exeoption에 추가 해놓았고
해당 코드들만 message 바로 전달하도록 Adapter에 처리했습니다 ~

📸 스크린샷

스크린샷
KakaoTalk_Video_2025-02-18-17-39-18.mp4

Summary by CodeRabbit

  • New Features
    • 로그인 화면이 개선되어, 홈 화면으로 쉽게 이동할 수 있는 내비게이션 기능이 추가되었습니다.
    • 약관 및 개인정보 보호 정책을 확인할 수 있는 버튼이 도입되어, 관련 정보를 쉽게 열람할 수 있습니다.
    • 로그인 버튼 활성화 조건이 강화되었으며, 이메일과 비밀번호 입력 오류에 대해 상세한 피드백 및 토스트 알림으로 사용자 경험이 향상되었습니다.

@ashwon12 ashwon12 requested a review from jinukeu February 18, 2025 08:48
@ashwon12 ashwon12 self-assigned this Feb 18, 2025
Copy link

coderabbitai bot commented Feb 18, 2025

Important

Review skipped

Auto reviews are limited to specific labels.

🏷️ Labels to auto review (1)
  • CodeRabbit

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Walkthrough

이 PR은 앱의 네비게이션과 로그인 기능 전반에 걸쳐 개선 사항을 도입합니다.
네비게이션 관련 함수(YappNavHost, loginNavGraph 등)에 새로운 navigateHome 파라미터가 추가되어 홈 화면으로의 이동을 지원하며, 관련 매개변수 포맷팅이 개선되었습니다.
또한, 로그인 프로세스를 위한 LoginRepository 인터페이스와 구현체, LoginApi, DTO(LoginRequest, LoginResponse) 등이 추가되고 DI 바인딩이 도입되었습니다.
오류 처리 로직과 예외 클래스도 보완되었으며, 로그인 유즈케이스, 뷰모델, UI 컴포넌트 업데이트를 통해 전체 로그인 경험이 강화되었습니다.

Changes

파일 경로(들) 변경 사항 요약
app/src/.../YappNavHost.kt
feature/login/.../LoginNavigation.kt
네비게이션 함수에 navigateHome 파라미터 추가 및 trailing comma 포맷팅 수정
core/data-api/.../LoginRepository.kt
core/data/.../RepositoryModule.kt
core/data/.../LoginRepositoryImpl.kt
core/data/.../LoginApi.kt
core/data/.../ApiModule.kt
core/data/.../LoginRequest.kt
core/data/.../LoginResponse.kt
로그인 관련 인터페이스, 구현체, API 인터페이스와 DTO 클래스 추가 및 DI 바인딩 도입
core/data/.../ApiResultCallAdapter.kt
core/data/.../OptionalApiResultCallAdapter.kt
API 호출 오류 처리 로직 수정: errorCode 조건에 따른 메시지 설정 변경
core/domain/.../LoginUseCase.kt LoginUseCase 클래스 추가로 비동기 로그인 플로우 구현
feature/login/.../LoginContract.kt
feature/login/.../LoginScreen.kt
feature/login/.../LoginViewModel.kt
feature/login/.../AgreementBottomDialog.kt
feature/login/.../LoginInputSection.kt
로그인 상태, 인텐트, 사이드 이펙트 및 UI 컴포넌트(에러 메시지, 버튼 동작 등) 업데이트

Sequence Diagram(s)

sequenceDiagram
    participant 사용자 as User
    participant 화면 as LoginScreen
    participant VM as LoginViewModel
    participant UC as LoginUseCase
    participant Repo as LoginRepositoryImpl
    participant API as LoginApi
    
    사용자->>화면: 로그인 버튼 클릭
    화면->>VM: ClickLoginButton 인텐트 발생
    VM->>UC: login(email, password) 호출
    UC->>Repo: login(email, password) 요청
    Repo->>API: POST /v1/auth/login (LoginRequest)
    API-->>Repo: LoginResponse 반환
    Repo-->>UC: 결과 전달
    UC-->>VM: 결과 전달
    VM->>화면: NavigateToHome 사이드 이펙트 발생
    화면->>Navigator: 홈 화면으로 이동
Loading

Possibly related PRs

Suggested labels

Feature, CodeRabbit

Suggested reviewers

  • jinukeu

Poem

코드 숲 속을 깡충깡충 뛰며,
새로운 길이 열렸네,
navigateHome의 밝은 빛 따라
버그는 사라지고 기능은 춤추네,
오늘도 행복한 코딩, 🐰
우리의 여정은 찬란히 빛나리!


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

‼️ IMPORTANT
Auto-reply has been disabled for this repository in the CodeRabbit settings. The CodeRabbit bot will not respond to your replies unless it is explicitly tagged.

  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Member

@jinukeu jinukeu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

확인했습니다! 고생하셨어요!

+로그인 Pending 상태인 경우의 처리는 다음 PR에서 하시는걸까요?

@ashwon12
Copy link
Contributor Author

@jinukeu
진욱님이 이야기하신 Pending이 회원가입 대기 상태 이야기 하는거 맞을까요 ?
회원가입 대기 상태일 땐 USR_1102 에러코드로 응답이 내려오도록 되어있더라구요 !
로그인 화면에서 대기 상태에 대한 에러는 기획이 따로 없어서 우선 토스트 메세지 처리만 해두었습니다 !!

@ashwon12
Copy link
Contributor Author

@coderabbitai review

Copy link

coderabbitai bot commented Feb 18, 2025

✅ Actions performed

Review triggered.

Note: CodeRabbit is an incremental review system and does not re-review already reviewed commits. This command is applicable only when automatic reviews are paused.

@jinukeu
Copy link
Member

jinukeu commented Feb 18, 2025

@jinukeu
진욱님이 이야기하신 Pending이 회원가입 대기 상태 이야기 하는거 맞을까요 ?
회원가입 대기 상태일 땐 USR_1102 에러코드로 응답이 내려오도록 되어있더라구요 !
로그인 화면에서 대기 상태에 대한 에러는 기획이 따로 없어서 우선 토스트 메세지 처리만 해두었습니다 !!

@ashwon12 아하 그러면 ... 상윤님과 얘기해서 기획 맞춰보면 좋을 듯 합니다! 기획 정해지면 반영해주시죠

Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 12

🔭 Outside diff range comments (2)
feature/login/src/main/java/com/yapp/feature/login/LoginScreen.kt (2)

80-92: 🧹 Nitpick (assertive)

접근성 개선이 필요합니다.

에러 메시지가 있는 입력 필드에 대해 TalkBack 사용자를 위한 접근성 설명을 추가하면 좋겠습니다.

LoginInputSection 컴포넌트에 다음과 같은 접근성 속성을 추가해보세요:

 LoginInputSection(
     email = loginState.email,
     password = loginState.password,
     onEmailChange = { onIntent(LoginIntent.ChangeEmail(it)) },
     onPasswordChange = { onIntent(LoginIntent.ChangePassword(it)) },
     buttonEnable = loginState.enableLoginButton,
     onButtonClick = {
         keyboardController?.hide()
         onIntent(LoginIntent.ClickLoginButton)
     },
     emailErrorDescription = loginState.emailErrorDescription,
     passwordErrorDescription = loginState.passwordErrorDescription,
+    modifier = Modifier.semantics {
+        if (loginState.emailErrorDescription != null) {
+            contentDescription = "이메일 입력 필드: ${loginState.emailErrorDescription}"
+        }
+        if (loginState.passwordErrorDescription != null) {
+            contentDescription = "비밀번호 입력 필드: ${loginState.passwordErrorDescription}"
+        }
+    }
 )

115-120: 🧹 Nitpick (assertive)

프리뷰 기능을 개선해보세요.

현재 프리뷰는 기본적인 상태만 보여주고 있습니다. 다양한 상태(에러, 로딩 등)에 대한 프리뷰를 추가하면 좋겠습니다.

다음과 같이 다양한 상태의 프리뷰를 추가해보세요:

+@Preview(showBackground = true)
+@Composable
+private fun LoginScreenWithErrorPreview() {
+    YappTheme {
+        LoginScreen(
+            loginState = LoginState(
+                emailErrorDescription = "잘못된 이메일 형식입니다",
+                passwordErrorDescription = "비밀번호는 8자 이상이어야 합니다"
+            )
+        )
+    }
+}

+@Preview(showBackground = true)
+@Composable
+private fun LoginScreenWithDialogPreview() {
+    YappTheme {
+        LoginScreen(
+            loginState = LoginState(
+                showAgreementDialog = true
+            )
+        )
+    }
+}
♻️ Duplicate comments (1)
feature/login/src/main/java/com/yapp/feature/login/LoginViewModel.kt (1)

91-115: 🛠️ Refactor suggestion

에러 메시지 파싱 로직 개선 제안
문자열 검색(contains("이메일"), contains("올바르지"))은 서버 예외 메시지가 바뀌면 쉽게 깨질 수 있는 구조입니다. 서버로부터 명시적인 ERROR_TYPE을 받거나, 에러 코드를 사용하는 방식을 사용하면 유지보수가 더 용이합니다.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: ASSERTIVE
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between e41c54d and 8fbae90.

📒 Files selected for processing (18)
  • app/src/main/java/com/yapp/app/official/navigation/YappNavHost.kt (1 hunks)
  • core/data-api/src/main/java/com/yapp/dataapi/LoginRepository.kt (1 hunks)
  • core/data/src/main/java/com/yapp/core/data/data/di/RepositoryModule.kt (2 hunks)
  • core/data/src/main/java/com/yapp/core/data/data/repository/LoginRepositoryImpl.kt (1 hunks)
  • core/data/src/main/java/com/yapp/core/data/remote/api/LoginApi.kt (1 hunks)
  • core/data/src/main/java/com/yapp/core/data/remote/di/ApiModule.kt (2 hunks)
  • core/data/src/main/java/com/yapp/core/data/remote/model/request/LoginRequest.kt (1 hunks)
  • core/data/src/main/java/com/yapp/core/data/remote/model/response/LoginResponse.kt (1 hunks)
  • core/data/src/main/java/com/yapp/core/data/remote/retrofit/ApiResultCallAdapter.kt (1 hunks)
  • core/data/src/main/java/com/yapp/core/data/remote/retrofit/OptionalApiResultCallAdapter.kt (1 hunks)
  • core/domain/src/main/java/com/yapp/domain/LoginUseCase.kt (1 hunks)
  • core/model/src/main/java/com/yapp/model/exceptions/YappExceptions.kt (1 hunks)
  • feature/login/src/main/java/com/yapp/feature/login/LoginContract.kt (2 hunks)
  • feature/login/src/main/java/com/yapp/feature/login/LoginScreen.kt (7 hunks)
  • feature/login/src/main/java/com/yapp/feature/login/LoginViewModel.kt (1 hunks)
  • feature/login/src/main/java/com/yapp/feature/login/component/AgreementBottomDialog.kt (5 hunks)
  • feature/login/src/main/java/com/yapp/feature/login/component/LoginInputSection.kt (2 hunks)
  • feature/login/src/main/java/com/yapp/feature/login/navigation/LoginNavigation.kt (1 hunks)
🧰 Additional context used
🧠 Learnings (1)
core/data/src/main/java/com/yapp/core/data/remote/retrofit/OptionalApiResultCallAdapter.kt (1)
Learnt from: jinukeu
PR: YAPP-admin/yappu-world-android#30
File: core/data/src/main/java/com/yapp/core/data/remote/retrofit/OptionalApiResultCallAdapter.kt:21-24
Timestamp: 2025-01-24T12:06:26.854Z
Learning: The duplication between OptionalApiResultCall and ApiResultCall in the retrofit adapters is intentional to allow independent evolution of each adapter, despite their current structural similarities.
🔇 Additional comments (19)
core/model/src/main/java/com/yapp/model/exceptions/YappExceptions.kt (2)

13-16: 로그인 관련 예외 처리가 잘 구현되었습니다!

각 예외 클래스에 명확하고 사용자 친화적인 오류 메시지가 포함되어 있으며, 오류 코드도 일관된 명명 규칙을 따르고 있습니다.

Also applies to: 24-27


30-39: 스레드 안전성 개선 필요

YappException 클래스의 메시지 변경 기능이 스레드로부터 안전하지 않을 수 있습니다. 여러 스레드에서 동시에 setMessage를 호출할 경우 경쟁 상태가 발생할 수 있습니다.

다음 사항을 확인해 주세요:

  1. 메시지 변경이 스레드 안전해야 하는지 여부
  2. 필요한 경우 @Synchronized 어노테이션 추가 또는 다른 동기화 메커니즘 적용 검토
core/data/src/main/java/com/yapp/core/data/remote/retrofit/ApiResultCallAdapter.kt (1)

66-73: 오류 메시지 처리 개선이 잘 이루어졌습니다!

공통 오류(COM_0001, COM_0002)에 대해 서버에서 전달된 메시지를 사용하도록 개선되었습니다. 이를 통해 더 구체적인 오류 정보를 사용자에게 전달할 수 있게 되었습니다.

참고: OptionalApiResultCallAdapter와의 코드 중복은 의도적인 것으로, 각 어댑터의 독립적인 발전을 위해 유지되고 있습니다.

core/data/src/main/java/com/yapp/core/data/remote/retrofit/OptionalApiResultCallAdapter.kt (1)

76-83: ApiResultCallAdapter와 일관된 오류 처리 구현이 잘 되었습니다!

ApiResultCallAdapter와 동일한 방식으로 오류 메시지 처리가 구현되어 있어 일관성이 잘 유지되었습니다.

feature/login/src/main/java/com/yapp/feature/login/LoginContract.kt (1)

27-28: 약관 및 개인정보 처리방침 관련 Intent 구현이 잘 되었습니다!

ClickTermsClickPersonalPolicy Intent가 기존 패턴을 잘 따르고 있으며, 이름도 명확합니다.

feature/login/src/main/java/com/yapp/feature/login/navigation/LoginNavigation.kt (1)

14-20: LGTM! 홈 화면 네비게이션 기능이 잘 추가되었습니다.

로그인 성공 후 홈 화면으로 이동하는 네비게이션 기능이 깔끔하게 구현되었습니다.

app/src/main/java/com/yapp/app/official/navigation/YappNavHost.kt (1)

23-26: LGTM! 네비게이션 파라미터가 잘 추가되었습니다.

LoginNavigation의 변경사항과 일관되게 navigateHome 파라미터가 잘 추가되었습니다.

feature/login/src/main/java/com/yapp/feature/login/component/LoginInputSection.kt (2)

29-35: LGTM! 에러 처리가 잘 구현되었습니다.

이메일 입력 필드의 에러 상태와 설명이 적절하게 처리되었습니다.


59-68: 🧹 Nitpick (assertive)

네임드 아규먼트 적용을 제안드립니다.

가독성 향상을 위해 네임드 아규먼트를 사용하는 것이 좋을 것 같습니다.

             LoginInputSection(
-                "",
-                "",
-                {},
-                {},
-                false,
-                {},
-                null,
-                null
+                email = "",
+                password = "",
+                onEmailChange = {},
+                onPasswordChange = {},
+                buttonEnable = false,
+                onButtonClick = {},
+                emailErrorDescription = null,
+                passwordErrorDescription = null
             )
feature/login/src/main/java/com/yapp/feature/login/component/AgreementBottomDialog.kt (1)

27-37: LGTM! 약관 및 개인정보처리방침 버튼 기능이 잘 구현되었습니다.

이용약관과 개인정보처리방침으로의 이동 기능이 깔끔하게 추가되었습니다. PR 목적에 맞게 로그인 시 약관 동의 기능이 잘 구현되었습니다.

feature/login/src/main/java/com/yapp/feature/login/LoginScreen.kt (1)

3-5: 새로운 import 구문이 적절하게 추가되었습니다!

필요한 Android 컴포넌트들과 Compose 관련 import가 깔끔하게 정리되어 있습니다.

Also applies to: 14-15, 22-22

feature/login/src/main/java/com/yapp/feature/login/LoginViewModel.kt (5)

4-4: 의존성 주입 설정이 적절해 보입니다.
이 로직 추가로 viewModelScopeLoginUseCase 등을 사용할 수 있어, 비동기 처리와 확장성을 확보하기에 적합합니다.

Also applies to: 7-8, 10-10


14-16: Hilt 기반 ViewModel 주입 구조가 명확합니다.
LoginUseCase를 생성자에서 바로 주입하여, 테스트와 유지보수가 편해졌습니다.


20-21: MVI 구조 연결 확인
mviIntentStore 초기화 시 onIntent를 바인딩하는 방식은 유지보수에 유리합니다. 이후 인텐트 분기 처리를 추가할 때 유연하게 확장 가능합니다.


80-87: login 함수의 코루틴 사용 방식
viewModelScope.launch로 비동기 처리를 수행하는 방식이 옳습니다. 스코프가 ViewModel과 연동되어, 화면 전환 시점에 맞춰 job이 취소되어 리소스를 효율적으로 사용할 수 있습니다.


88-90: 로그인 성공 시 홈으로 이동
성공 시 postSideEffect를 통해 내비게이션을 명확하게 분리한 점이 좋습니다. 로직의 가독성과 유지보수성이 높아집니다.

core/data/src/main/java/com/yapp/core/data/remote/di/ApiModule.kt (1)

29-33: 구현이 잘 되었습니다!

Dagger/Hilt의 모범 사례를 잘 따르고 있으며, 싱글톤 스코프와 의존성 주입이 적절하게 구현되어 있습니다.

core/data/src/main/java/com/yapp/core/data/data/di/RepositoryModule.kt (1)

5-5: 구현이 잘 되어있습니다!

LoginRepository의 바인딩이 기존 Repository들과 일관된 패턴을 따르고 있으며, SingletonComponent 스코프와 @BINDS 어노테이션이 적절하게 사용되었습니다.

Also applies to: 9-9, 34-38

core/data/src/main/java/com/yapp/core/data/remote/model/response/LoginResponse.kt (1)

5-9: 기본 구현이 잘 되어있습니다!

LoginResponse 클래스가 적절하게 internal로 표시되어 있고, kotlinx.serialization을 올바르게 사용하고 있습니다.

Comment on lines 13 to 19
override suspend fun login(email: String, password: String){
val response = loginApi.login(LoginRequest(email = email, password = password))
response.let {
securityPreferences.setAccessToken(it.accessToken)
securityPreferences.setRefreshToken(it.refreshToken)
}
}
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion

토큰 저장 로직을 개선하세요.

현재 구현에는 다음과 같은 개선이 필요합니다:

  1. response.let 블록이 불필요합니다. 직접 response를 사용할 수 있습니다.
  2. 토큰 저장 실패에 대한 오류 처리가 없습니다.

다음과 같이 개선하는 것을 제안합니다:

-    override suspend fun login(email: String, password: String){
-        val response = loginApi.login(LoginRequest(email = email, password = password))
-        response.let {
-            securityPreferences.setAccessToken(it.accessToken)
-            securityPreferences.setRefreshToken(it.refreshToken)
-        }
-    }
+    override suspend fun login(email: String, password: String) {
+        val response = loginApi.login(LoginRequest(email = email, password = password))
+        try {
+            securityPreferences.setAccessToken(response.accessToken)
+            securityPreferences.setRefreshToken(response.refreshToken)
+        } catch (e: Exception) {
+            throw TokenStorageException("토큰 저장 실패", e)
+        }
+    }
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
override suspend fun login(email: String, password: String){
val response = loginApi.login(LoginRequest(email = email, password = password))
response.let {
securityPreferences.setAccessToken(it.accessToken)
securityPreferences.setRefreshToken(it.refreshToken)
}
}
override suspend fun login(email: String, password: String) {
val response = loginApi.login(LoginRequest(email = email, password = password))
try {
securityPreferences.setAccessToken(response.accessToken)
securityPreferences.setRefreshToken(response.refreshToken)
} catch (e: Exception) {
throw TokenStorageException("토큰 저장 실패", e)
}
}

@ashwon12 ashwon12 requested a review from jinukeu February 19, 2025 07:01
val errorMessage = it.message ?: ""
reduce{copy(isResponseLogin = false)}
when (it) {
is InvalidRequestArgument -> {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A: 아 비밀번호가 틀리면 COM 에러로 떨어지는군요 ,,, ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

네 맞아욥

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

으음 ... 요건 서버쪽에서 바꿔주면 좋을 것 같은데 ... 일단 넘어가시죵

@ashwon12 ashwon12 merged commit 64196ee into develop Feb 19, 2025
1 check passed
@ashwon12 ashwon12 deleted the feature/#78-login branch February 21, 2025 03:56
@coderabbitai coderabbitai bot mentioned this pull request Mar 14, 2025
@coderabbitai coderabbitai bot mentioned this pull request Mar 25, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[Feature] 로그인 API
2 participants