Skip to content

[COMMUNITY] 게시글 수정, 삭제 안되는 문제 해결#70

Merged
usn757 merged 2 commits intoPETTY-HUB:mainfrom
LimPark996:main
Jun 8, 2025
Merged

[COMMUNITY] 게시글 수정, 삭제 안되는 문제 해결#70
usn757 merged 2 commits intoPETTY-HUB:mainfrom
LimPark996:main

Conversation

@LimPark996
Copy link
Contributor

🚀 Pull Request

📜 PR 내용 요약

필드명 불일치 문제 해결 및 불필요한 관리자 엔드포인트 제거

사용자 인증 관련 필드명이 변경되면서 발생한 게시글/댓글 작성자 확인 로직 오류를 수정하고, 더 이상 사용하지 않는 관리자용 임시 엔드포인트를 정리했습니다.

⚒️ 작업 및 변경 내용(상세하게)

🔧 필드명 수정

  • 게시글 작성자 확인 로직 수정

    • post.userNamepost.writer로 변경
    • 영향 파일: post-detail.html, edit-qna.js, edit-review.js, edit-showoff.js
  • 댓글 작성자 확인 로직 수정

    • comment.userNamecomment.writer로 변경
    • 영향 파일: post-detail.html

🗑️ 코드 정리

  • 불필요한 관리자 엔드포인트 제거
    • PostController.java에서 updateAllPostCounts() 메서드 삭제
    • @PostMapping("/update-counts") 엔드포인트 제거
    • 13줄의 임시 코드 정리

🐛 해결된 버그

  • 게시글 작성자 본인에게 수정/삭제 버튼이 표시되지 않던 문제
  • 댓글 작성자 본인에게 수정/삭제 버튼이 표시되지 않던 문제
  • 작성자가 아닌 사용자도 수정 페이지에 접근할 수 있던 보안 문제

📚 기타 참고 사항

🔍 리뷰 포인트

  1. 보안: 작성자 확인 로직이 올바르게 수정되었는지 확인
  2. 일관성: 모든 파일에서 동일한 필드명(writer)을 사용하는지 확인
  3. 테스트: 게시글/댓글의 수정/삭제 권한이 올바르게 작동하는지 테스트 필요

🧪 테스트 방법

// 콘솔에서 작성자 확인 테스트
getCurrentUser().then(currentUser => {
    fetch(`/api/posts/${postId}`).then(res => res.json()).then(post => {
        console.log('현재 사용자:', currentUser.username);
        console.log('게시글 작성자:', post.writer);
        console.log('작성자 일치:', currentUser.username === post.writer);
    });
});

@coderabbitai
Copy link

coderabbitai bot commented Jun 8, 2025

Important

Review skipped

Auto reviews are disabled on this repository.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


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.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@usn757 usn757 merged commit 6e0e064 into PETTY-HUB:main Jun 8, 2025
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants