Skip to content

Feat/#2 admin login #4

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

Open
wants to merge 25 commits into
base: main
Choose a base branch
from
Open

Feat/#2 admin login #4

wants to merge 25 commits into from

Conversation

724thomas
Copy link
Collaborator

@724thomas 724thomas commented Apr 10, 2025

PR 유형

이 PR은 어떤 종류의 변경을 가져오나요?

  • 버그 수정
  • 새로운 기능 추가
  • 코드 스타일 업데이트 (서식, 로컬 변수)
  • 리팩터링 (기능 변경 없음, API 변경 없음)
  • 빌드 관련 변경
  • CI 관련 변경
  • 문서 내용 변경
  • 애플리케이션 / 인프라 변경
  • 기타... 설명:

현재 동작은 무엇인가요?

이슈 번호: resolves #3

새로운 동작은 무엇인가요?

기타 정보

@@ -0,0 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip

Choose a reason for hiding this comment

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

gradle wrapper 멀티 모듈 프로젝트에서 하나로 합칠 수 있습니다.

public interface AdminApiRepository extends JpaRepository<Admin, Long>, AdminApiRepositoryCustom{
Optional<Admin> findByEmail(String email);

boolean existsAdminByEmail(String email);

Choose a reason for hiding this comment

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

위의 메서드랑 합칠 수 있을 것 같네요.

# database:
# action: drop-and-create
# show-sql: true

Choose a reason for hiding this comment

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

불필요한 주석은 지워주시면 될 것 같습니다

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Feat #2: Admin 로그인
2 participants