Skip to content

Commit

Permalink
fix: 푸시 메시지 Enum의 id 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
sooyoungh committed Mar 3, 2024
1 parent d2d1b88 commit 4836664
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/main/java/com/hyundai/app/fcm/PushType.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,14 @@
@Getter
@AllArgsConstructor
public enum PushType {
RANDOM_SPOT(1, "흰디의 모험에 온 걸 환영해🎉",
"나는 대장 흰디야! 반가워",
"https://avatars.githubusercontent.com/u/158237286?s=400&u=db03152b8b64ca04183e918814f02316a5e8c4d9&v=4"),
WELCOME(2, "'흰디의 모험' 랜덤 스팟이 열렸어🎁",
WELCOME(1, "'흰디의 모험' 랜덤 스팟이 열렸어🎁",
"랜덤 스팟에서의 이벤트를 확인해봐",
"https://avatars.githubusercontent.com/u/158237286?s=400&u=db03152b8b64ca04183e918814f02316a5e8c4d9&v=4"),
RANDOM_SPOT(2, "흰디의 모험에 온 걸 환영해🎉",
"나는 대장 흰디야! 반가워",
"https://avatars.githubusercontent.com/u/158237286?s=400&u=db03152b8b64ca04183e918814f02316a5e8c4d9&v=4");


private final int id;
private final String title;
private final String content;
Expand Down

0 comments on commit 4836664

Please sign in to comment.