Skip to content

Commit

Permalink
Fix(#110): 404에러 발생 수정 (#119)
Browse files Browse the repository at this point in the history
* Refactor(#110): 대시보드 접근 권한 수정, 카테고리 중복 수정

* Test(#110): 카테고리 중복 수정으로 인한 테스트 코드 수정

* Fix(#110): 404에러 발생 수정

* Fix(#110): 404에러 발생 수정
  • Loading branch information
giwoong01 authored Sep 12, 2024
1 parent 84a30f9 commit 535e6b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public TeamDashboardListResDto findForTeamDashboard(String email) {

// 팀 대시보드 상세 조회
public TeamDashboardInfoResDto findById(String email, Long dashboardId) {
Member member = memberRepository.findByEmail("email").orElseThrow(MemberNotFoundException::new);
Member member = memberRepository.findByEmail(email).orElseThrow(MemberNotFoundException::new);
TeamDashboard dashboard = teamDashboardRepository.findById(dashboardId)
.orElseThrow(DashboardNotFoundException::new);

Expand Down

0 comments on commit 535e6b9

Please sign in to comment.