Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public Blog findBlogByToken() {
return verifiedBlog(blog.getId());
}

@Transactional
public Blog updateBlog(BlogRequestDto blogRequestDto) {
Long userId = tokenService.getIdFromToken();

Expand Down
1 change: 1 addition & 0 deletions frontend/src/app/account/signup/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ export default function RegisterPage() {
// requestDto 객체 생성
const requestData = {
roleId: 1, // 예시로 roleId가 1이라고 가정
username: username, // 닉네임
email: fullEmail, // 생성된 이메일
password: password, // 비밀번호
phoneNumber: phoneNumber, // 전화번호
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/app/main/category/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const CategoryDetailPage = () => {

// 페이지네이션 상태
const [currentPage, setCurrentPage] = useState(1)
const booksPerPage = 8 // 한 페이지당 표시할 게시물 수
const booksPerPage = 5 // 한 페이지당 표시할 게시물 수

// 카테고리에 따른 타이틀 설정
const getCategoryTitle = () => {
Expand Down
Loading