Skip to content

Commit

Permalink
πŸ”— :: (836) λ””λ°”μ΄μŠ€ 토큰 ν”Œλž«νΌ νƒ€μž… μ„€μ •
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyoil2 authored Nov 6, 2024
2 parents 0c30af2 + c0b42d8 commit 76b9284
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import team.retum.jobis.domain.auth.dto.response.TokenResponse;
import team.retum.jobis.domain.auth.model.AuthCode;
import team.retum.jobis.domain.auth.model.Authority;
import team.retum.jobis.domain.auth.model.PlatformType;
import team.retum.jobis.domain.auth.spi.JwtPort;
import team.retum.jobis.domain.auth.spi.QueryAuthCodePort;
import team.retum.jobis.domain.notification.spi.NotificationPort;
Expand Down Expand Up @@ -70,7 +71,9 @@ public TokenResponse execute(StudentSignUpRequest request) {
.build()
);

notificationPort.subscribeAllTopic(user);
if (request.platformType() != PlatformType.WEB) {
notificationPort.subscribeAllTopic(user);
}

commandVerifiedStudentPort.deleteByGcnAndName(
SchoolNumber.processSchoolNumber(student.getSchoolNumber()),
Expand Down

0 comments on commit 76b9284

Please sign in to comment.