Skip to content

Commit

Permalink
feat : 사용자가 스탬프 판을 가지고 있는지 확인하는 로직 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
gutanbug committed Apr 5, 2024
1 parent ec9b892 commit 26057ce
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import com.dku.council.domain.danfesta.service.StampService;
import com.dku.council.global.auth.jwt.AppAuthentication;
import com.dku.council.global.auth.role.UserAuth;
import com.dku.council.global.model.dto.ResponseBooleanDto;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
Expand All @@ -21,6 +22,7 @@ public class StampController {
/**
* 기본 스탬프 정보 생성
* <p>부스별 미션을 수행하기 위한 사전단계로 제일 먼저 사용되어야 합니다.</p>
* <p>단, 처음 한번만 사용해야하기 때문에 이후에는 기본 스탬프 정보를 확인하는 API로 판별해야 합니다.</p>
*/
@PostMapping
@UserAuth
Expand All @@ -36,4 +38,15 @@ public void createDefaultSpecialMission(AppAuthentication auth) {
public ResponseStampInfoDto getMySpecialMission(AppAuthentication auth) {
return stampService.getStampInfo(auth.getUserId());
}

/**
* 기본 스탬프 정보를 가지고 있는 확인
* <p>true일 경우가 스탬프 판이 존재하는 값입니다.</p>
*/
@GetMapping
@UserAuth
public ResponseBooleanDto checkDefaultSpecialMission(AppAuthentication auth) {
boolean result = stampService.checkDefaultStampInfo(auth.getUserId());
return new ResponseBooleanDto(result);
}
}

0 comments on commit 26057ce

Please sign in to comment.