-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from Timetris-Trendithon/mainPageError
🐛Fix: token과 함께 리다이렉트
- Loading branch information
Showing
5 changed files
with
42 additions
and
28 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
8 changes: 5 additions & 3 deletions
8
src/main/java/com/trendithon/timetris/domain/mainpage/service/MainPageService.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
package com.trendithon.timetris.domain.mainpage.service; | ||
|
||
import com.trendithon.timetris.domain.mainpage.dto.MainPageDTO; | ||
import jakarta.servlet.http.HttpServletRequest; | ||
import com.trendithon.timetris.domain.member.dto.MyPageResponse; | ||
import org.springframework.stereotype.Service; | ||
|
||
|
||
|
||
@Service | ||
public interface MainPageService { | ||
MainPageDTO getMainPage(long userId, HttpServletRequest request); | ||
MainPageDTO getMainPage(long userId); | ||
|
||
MyPageResponse.getMyPageDTO getUserInfo(Long userId); | ||
|
||
Long getUserId(String username, String imgUrl); | ||
void createUserDate(); | ||
} |
This file contains 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
This file contains 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