feat: member 기능 수정 - 로그인, 로그아웃 토큰 ì‚, 회원

로그아웃 토큰 ì - 로그그 아웃시 블랙리스트 토큰 적재 과정 삭제, 토큰 삭제만 처리하도록 수정
This commit is contained in:
unknown
2025-06-12 17:40:57 +09:00
parent 9ec87678d3
commit 909e51cc4c
6 changed files with 33 additions and 31 deletions
@@ -52,11 +52,11 @@ public class RecommendationController {
public ResponseEntity<ApiResponse<Page<MarketingTipResponse>>> getMarketingTipHistory(
@Parameter(description = "매장 ID") @RequestParam Long storeId,
Pageable pageable) {
log.info("마케팅 팁 이력 조회: storeId={}, page={}", storeId, pageable.getPageNumber());
Page<MarketingTipResponse> response = marketingTipUseCase.getMarketingTipHistory(storeId, pageable);
return ResponseEntity.ok(ApiResponse.success(response));
}
@@ -42,13 +42,6 @@ management:
health:
show-details: always
springdoc:
swagger-ui:
path: /swagger-ui.html
operations-sorter: method
api-docs:
path: /api-docs
logging:
level:
com.won.smarketing.recommend: ${LOG_LEVEL:DEBUG}