✨ 중앙대학교 홈 대학 추가 - #622
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
2 Skipped Deployments
|
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository UI Review profile: CHILL Plan: Pro Plus Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (2)
Walkthrough
Estimated code review effort: 2 (Simple) | ~10 minutes Suggested reviewers: ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This was referenced Aug 3, 2026
Merged
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
요약
서버에 중앙대학교가 홈 대학으로 추가된 것을
apps/university-web에 반영합니다./university/chungang목록·검색 페이지와/university/chungang/:id상세 페이지가 SSG로 생성됩니다.서버 데이터 확인
공개 API(
/univ-apply-infos/search/text)로 실제 값을 확인하고 반영했습니다.변경 내용
types/university.ts—HomeUniversityName에CHUNGANG = "중앙대학교"추가,HomeUniversitySlug에"chungang"추가constants/university.ts—HOME_UNIVERSITY_SLUG_MAP/HOME_UNIVERSITY_TO_SLUG_MAP/HOME_UNIVERSITY_LIST/HOME_UNIVERSITY_SLUGS에 중앙대 항목 추가 (homeUniversityId: 3, slugchungang, shortName중앙대)public/images/univs/chungang.png— 로고 추가 (600×600, RGBA, 투명 배경)color는 로고에서 추출한 CAU 블루#006DB4를 사용했습니다.로고 관련 특이사항
전달받은 원본 로고 파일에 빨간색 사각 테두리(주석용 표식으로 보임)가 실제로 포함되어 있었습니다. PNG를 직접 디코딩해 확인한 결과
(228,31,31)계열 2,530픽셀이x422~515 / y173~267영역에 사각 테두리 형태로 존재했고, 테두리가u글자 위를 가로지르고 있었습니다.배경이 투명하고 테두리가 얇아, 주변 색상 기반 인페인트로 제거한 뒤 커밋했습니다. 처리 후 빨강 계열 픽셀 0개이며 남은 색상은 CAU 블루
(0,109,180)단색입니다.u획도 끊김 없이 이어지는 것을 확대 비교로 확인했습니다.범위 밖 (후속 필요)
apps/web에는 이번 PR에서 추가하지 않았습니다.apps/web의HomeUniversityInfo에는maxChoiceCount(지원 가능 대학 수) 필드가 필수인데, 인하대=3 / 경희대=5로 값이 서로 달라 중앙대 값을 임의로 정할 수 없었습니다. 관리자 API는 인증이 필요해 조회하지 못했습니다.getHomeUniversityById(3)이undefined를 반환해DEFAULT_MAX_CHOICE_COUNT(3)로 폴백하며, 이는 기존 동작과 동일합니다.maxChoiceCount를 알려주시면apps/web(홈 대학 목록·sitemap·지원 플로우) 반영을 후속 PR로 올리겠습니다.검증
pnpm --filter @solid-connect/university-web run lint:check— 319 files 통과pnpm --filter @solid-connect/university-web run typecheck:ci— 통과run build)는 이번에 실행하지 않았습니다. 머지 전 확인을 권장합니다 —generateStaticParams가 중앙대 186개 대학의 상세 페이지를 새로 생성하며, 이 앱은 데이터 fetch 실패 시 빈 카탈로그 대신 빌드가 실패하도록 설계되어 있습니다.🤖 Generated with Claude Code