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

어드민 페이지 퍼블리싱 완성했습니다 #44

Merged
merged 2 commits into from
Oct 9, 2024

Conversation

rhehfl
Copy link
Collaborator

@rhehfl rhehfl commented Oct 9, 2024

🔗 관련 이슈

#41

📝작업 내용

image
image
간단하게 문제 리스트랑 문제를 추가할 수 있는 어드민 페이지를 구성했습니다
기능은 백엔드 api가 나옴과 동시에 만들도록 하겠습니다.

+실수로 커밋을 잘못해서 34번 이슈에 대해 커밋을 올렸습니다.... 매우 죄송합니다

🔍 변경 사항

  • 어드민 페이지 생성
  • 문제 추가 페이지 생성
  • 변경 사항 3

💬리뷰 요구사항 (선택사항)

@rhehfl rhehfl added the 🎨 Publish 마크업 & 스타일링 label Oct 9, 2024
@rhehfl rhehfl self-assigned this Oct 9, 2024
@rhehfl rhehfl linked an issue Oct 9, 2024 that may be closed by this pull request
3 tasks
@bluetree7878
Copy link
Collaborator

간단하게 잘 만드신 것 같아요. 좋습니다! 잘못 적은 커밋 메시지의 커밋이 원격에 푸시되어도 수정해서 다시 푸시할 수 있는 방법이 있습니다. force 명령어로 강제 푸시하는 것이기에 블로그에 작성된 것처럼 위험할 수는 있겠지만 저희는 브랜치를 각자 관리하기에 큰 문제는 없을 것 같습니다. (이미 저는 미니 때 사용했었습니다만... 따로 문제 없었습니다 ㅎㅎ)

참고자료) https://velog.io/@dev_bomdong/Git-%EC%9D%B4%EB%AF%B8-push%ED%95%9C-commit-message-%EC%88%98%EC%A0%95%ED%95%98%EA%B8%B0

@rhehfl
Copy link
Collaborator Author

rhehfl commented Oct 9, 2024

저도 저 글을 보긴했는데 사용하지 않는게 좋다구 나와서 pr올릴때 메세지만 남겨놨습니다
입력폼 좀 대충인감이 없지않아 있긴한데 오늘 이상으로 시간을 투자하는건 좀 손해인 것 같아서 일단 머지하도록 하겠습니다

@rhehfl rhehfl merged commit 165a9e6 into develop Oct 9, 2024
@rhehfl rhehfl deleted the publish/#41/admin_page branch October 9, 2024 15:10
@dg1418
Copy link
Collaborator

dg1418 commented Oct 9, 2024

오 벌써 만드셨네요

Comment on lines +1 to +10
export default interface Quiz {
id?: number;
part: string;
sectionId: number;
title: string;
question: string;
answer: string[];
category: 'Combination' | 'MultipleChoice' | 'OXSelector' | 'ShortAnswer';
answerChoice?: string[];
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

카톡에서 했던 이야기 연장선인데, part와 category 를 db에서 enum으로 잡고 했어요. 요기에서는 string 카멜케이스로 req를 주는듯 한데 저는 대문자 스네이크케이스가 오는걸 전제로 작성했었습니다. 나중에 백이나 프론트에서 정한 형태로 맞춰야할듯 합니다

@rhehfl
Copy link
Collaborator Author

rhehfl commented Oct 9, 2024 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🎨 Publish 마크업 & 스타일링
Projects
None yet
Development

Successfully merging this pull request may close these issues.

admin page
3 participants