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

[FEAT]: 회원 탈퇴 API 구현 #100

Merged
merged 20 commits into from
Sep 6, 2023
Merged

[FEAT]: 회원 탈퇴 API 구현 #100

merged 20 commits into from
Sep 6, 2023

Conversation

twoosky
Copy link
Member

@twoosky twoosky commented Sep 6, 2023

Issue number

작업 사항

  • 회원 탈퇴 API 구현
    • 필요 조건: 대기 상태인 지원서가 없음, 진행 중인 모임이 없음
    • 진행 중인 모임: 아직 시작하지 않은 모임 or 시작 후 24시간이 지나지 않은 모임 (startTime + 24H)
  • 탈퇴 Flow
    • captain으로 활동하는 모임 존재 X : 대기 상태 지원서 취소, 진행 중인 모임 나가기 -> 탈퇴 가능
    • captain으로 활동하는 모임 존재 : 해당 모임이 끝난 뒤 탈퇴 가능 (captain은 모임을 나갈 수 없음)
  • 지원서 취소 API 구현 필요

DDL

alter table users add column status varchar(255) default 'ACTIVE';

@twoosky twoosky added the feature label Sep 6, 2023
@twoosky twoosky self-assigned this Sep 6, 2023
@twoosky twoosky merged commit 74a38b2 into dev Sep 6, 2023
1 check passed
@jihwan2da jihwan2da deleted the feature/signout-99 branch September 13, 2023 16:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

회원 탈퇴 기능을 구현한다.
1 participant