Skip to content

Commit

Permalink
Merge pull request #70 from Link-MIND/test
Browse files Browse the repository at this point in the history
[Merge] response naming ์ˆ˜์ •
  • Loading branch information
sss4920 committed Jan 14, 2024
2 parents b3a7f33 + fc82390 commit 5df8cb3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.app.toaster.controller.response.auth;

public record SignInResponseDto(Long userId, String accessToken, String refreshToken, String fcmToken, Boolean isRegistered,Boolean FcmIsAllowed, String profile) {
public record SignInResponseDto(Long userId, String accessToken, String refreshToken, String fcmToken, Boolean isRegistered,Boolean fcmIsAllowed, String profile) {
public static SignInResponseDto of(Long userId, String accessToken, String refreshToken, String fcmToken,
Boolean isRegistered, Boolean fcmIsAllowed, String profile){
return new SignInResponseDto(userId,accessToken, refreshToken,fcmToken,isRegistered,fcmIsAllowed,profile);
Expand Down

0 comments on commit 5df8cb3

Please sign in to comment.