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

[FIX] 솝탬프 닉네임 설정 오류 수정 #422

Merged
merged 11 commits into from
Oct 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions src/main/java/org/sopt/app/domain/enums/PlaygroundPart.java
Copy link
Contributor

Choose a reason for hiding this comment

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

p3:
디테일한 상세처리 좋은것 같습니다!

Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,19 @@
@Getter
public enum PlaygroundPart {
PLAN("기획", "기획"),
PLAN_PART_LEADER("기획 파트장", "기획파트장"),
DESIGN("디자인", "디자인"),
DESIGN_PART_LEADER("디자인 파트장", "디자인파트장"),
ANDROID("안드로이드", "안드"),
ANDROID_PART_LEADER("안드로이드 파트장", "안드파트장"),
IOS("iOS", "아요"),
IOS_PART_LEADER("iOS 파트장", "아요파트장"),
WEB("웹", "웹"),
WEB_PART_LEADER("웹 파트장", "웹파트장"),
SERVER("서버", "서버"),
SERVER_PART_LEADER("서버 파트장", "서버파트장"),
PRESIDENT("회장", "회장"),
VICE_PRESIDENT("부회장", "부회장"),
NONE("미상", "선배"),
;
final String partName;
Expand Down