-
Notifications
You must be signed in to change notification settings - Fork 1
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/accept invite #53
Merged
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit
Hold shift + click to select a range
9861ed0
feat: InviteInfo 테이블 추가
yoon-junseo 8e8aa1e
feat: 초대권 생성 기능 구현
yoon-junseo bd28fb7
feat: trpcModule, userModule에 inviteModule 추가
yoon-junseo b9ca01e
feat: 회원가입시 초대권 생성 코드 추가
yoon-junseo 57499b8
chore: 코드 포맷팅 및 console.log 제거
yoon-junseo 1caf19e
chore: 줄 띄어쓰기 추가
yoon-junseo 9a0e5f7
feat: 내 초대권 조회 기능 추가
yoon-junseo 35ca08b
feat: trpc router에 InviteController 연결
yoon-junseo 1e2d451
feat: controller에서 사용하는 모듈들을 상대경로로 import 변경
yoon-junseo 61982bc
feat: 내 초대권 조회 기능 테스트 추가
yoon-junseo 69c14d6
feat: code를 uid에서 랜덤 6자로 변경
yoon-junseo a514640
refactor: 불필요한 기본값 설정 제거
yoon-junseo d2fd0f2
refactor: 초대한 수 기록하는 변수에 기본값 설정 제거
yoon-junseo b94c236
wip migration 필요해서 브랜치를 옮기기 위한 커밋
11t518s 8f5c2bb
feat: add user type for non invite user
11t518s 487110f
[#46] 초대권 생성 기능 구현 (#48)
yoon-junseo e258e71
feat: add user type for non invite user
11t518s fa927bf
fix: default userType변경 및 inviteCode에 unique 추가
11t518s 0b765c0
fix: default userType변경 및 inviteCode에 unique 추가
11t518s 8157839
fix: inviteUser 테이블에 User relation연결
11t518s 01b28ee
fix: inviteUser 테이블에 User relation연결
11t518s 6c6edec
feat: ctx에 user 타입 캐스팅 해두기
11t518s dcb0cc5
feat: add inviteRecord table
11t518s d3fd51a
feat: add inviteRecord table
11t518s 3995609
fix: 연결관계 추가 및 인덱스 추가
11t518s 11a5b13
fix: 연결관계 추가 및 인덱스 추가
11t518s bcc104e
fix: test
11t518s b855f81
fix: test
11t518s c5ce916
Merge branch 'dev-migration' into feat/accept-invite
11t518s 6ec8730
wip
11t518s 8bc707d
fix: 회원가입 시 초대권이 생성되지 않고, 초대 시 생성되도록 변경
11t518s c58e2c9
feat: 클립보드 라이브러리 추가 및 패키지 고정
11t518s 550290f
feat: 초대 승인 기능
11t518s ec15167
fix: 코드 수정
11t518s 15a1ce8
fix: default 설정을 받을 수 있는
bongsu-rapportlabs bfa4cc7
wip
11t518s 5db0b00
fix: inviteUser 테이블에 User relation연결
bongsu-rapportlabs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 2 additions & 0 deletions
2
apps/server/prisma/migrations/20240622141207_add_user_type_for_non_invited/migration.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
-- AlterTable | ||
ALTER TABLE `User` MODIFY `type` ENUM('USER_NOT_INVITED', 'USER', 'ADMIN') NOT NULL DEFAULT 'USER'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
별건 아닌데 enum은 UserType 요런식으로 쓰면 어떨까