Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
76ffaa8
feat : 모임홈 API 연결
Feb 26, 2026
d1cc5d4
fix : 모임 검색 페이지 수정
Feb 26, 2026
e143a77
fix : 모임 홈 페이지 또 수정
Feb 26, 2026
69c66c9
feat : 모임 운영자 페이지 API 연결
Feb 26, 2026
2146862
feat : 모임 운영자 페이지 API 연결에 따른 UI수정
Feb 26, 2026
661945d
fix : build 오류 수정
Feb 26, 2026
23ac154
chore : 얜뭐지..?
Feb 27, 2026
6f816a8
chore : 책장 ENDPOINT,type 등
Feb 27, 2026
bc69499
fix : 불필요해진 로직 삭제
Feb 27, 2026
949755d
feat : API 연결
Feb 27, 2026
a3c7271
feat : 책장수정 페이지 추가
Feb 27, 2026
a491093
feat : 책장 생성 페이지 추가
Feb 27, 2026
bb5b1df
feat : 책장 페이지
Feb 27, 2026
2f89948
feat : 책장 쪽 UI들이 바뀌면서 같이 바뀐 UI들
Feb 27, 2026
55e37f3
fix : build error 수정
Feb 27, 2026
8412b1c
style : 책장 홈 화면 UI
Feb 27, 2026
78dfdad
chore : image 추가
Feb 27, 2026
43997c0
feat : 책장 상세,모임,발제,한줄평 endpoints
Feb 27, 2026
e1bf7c7
chore : 더미데이터 제거
Feb 27, 2026
8d28fde
feat : 모임,한줄평,발제,책장상세 types (Request,ResPonse DTO등)
Feb 27, 2026
d73a3a4
feat : 책장[상세,한줄평,발제] API
Feb 27, 2026
a95bcab
feat : 모임 쪽 API (meetingservice.ts같이봐주세요)
Feb 27, 2026
f61953f
feat : meatingDTO
Feb 27, 2026
7dacc8c
feat : 모임에서 권한조회
Feb 27, 2026
7aa7e16
fix : 그룹 루트 레이아웃 오류 수정
Feb 27, 2026
79422e8
feat : API 연결에 따른 UI수정 (조관리페이지)
Feb 27, 2026
47f9d31
feat : 책장 상세페이지에서 책 관련
Feb 27, 2026
7f031a4
feat : 책장 상세페이지에서 발제,한줄평 관련
Feb 27, 2026
b3a29b6
feat : 모임관련
Feb 27, 2026
00d02ea
feat : 책장 상세페이지 관리자일경우 뜨는 버튼
Feb 27, 2026
d8ec8da
무효화로직에 PEDDING 뿐 아니라 전체도 추가
hongik-luke Feb 27, 2026
d342961
TYPE 수정
hongik-luke Feb 27, 2026
e94daf0
Change '등록' to '수정' in edit page
hongik-luke Feb 27, 2026
2ad3e6a
가입처리 실패 로직 추가
hongik-luke Feb 27, 2026
182c7b9
Remove duplicate import of InfiniteData
hongik-luke Feb 27, 2026
58335f1
fix : build error 수정
Feb 27, 2026
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
2 changes: 0 additions & 2 deletions .env.example

This file was deleted.

5 changes: 5 additions & 0 deletions public/Danger_Circle.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/Delete_2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions public/Edit.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
439 changes: 274 additions & 165 deletions src/app/groups/[id]/admin/applicant/page.tsx

Large diffs are not rendered by default.

48 changes: 0 additions & 48 deletions src/app/groups/[id]/admin/bookcase/[meetingId]/dummy.ts

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import type { ReactNode } from 'react';

export default function bookshelfeditLayout({ children }: { children: ReactNode }) {
return <>{children}</>;
}
Loading