Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/111 notification message #112

Merged
merged 1 commit into from
Jun 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/main/java/beachcombine/backend/event/NotificationCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
@AllArgsConstructor
public enum NotificationCode {

CLEANING_AND_TRASH_DISPOSAL("μ²­μ†Œ μ™„λ£Œ",
"μ²­μ†Œ μ™„λ£Œλ‘œ 100ν¬μΈνŠΈκ°€ μ§€κΈ‰λ˜μ—ˆμŠ΅λ‹ˆλ‹€.",
"μ²­μ†Œ μ™„λ£Œλ₯Ό μΆ•ν•˜ λ“œλ¦½λ‹ˆλ‹€."),
CLEANING_WITHOUT_TRASH_DISPOSAL("μ²­μ†Œ μ™„λ£Œ",
"μ²­μ†Œ μ™„λ£Œλ‘œ 30ν¬μΈνŠΈκ°€ μ§€κΈ‰λ˜μ—ˆμŠ΅λ‹ˆλ‹€.",
"μ²­μ†Œ μ™„λ£Œλ₯Ό μΆ•ν•˜ λ“œλ¦½λ‹ˆλ‹€. μ“°λ ˆκΈ°ν†΅μ΄ 인증되면 좔가적인 70ν¬μΈνŠΈκ°€ μ§€κΈ‰λ©λ‹ˆλ‹€."),
TRASHCAN_CREDENTIAL("μ“°λ ˆκΈ°ν†΅ 인증 μ™„λ£Œ",
"좔가적인 70ν¬μΈνŠΈκ°€ μ§€κΈ‰λ˜μ—ˆμŠ΅λ‹ˆλ‹€.",
"μ‹ κ³ ν•œ μ“°λ ˆκΈ°ν†΅μ΄ 인증 λ˜μ—ˆμŠ΅λ‹ˆλ‹€.");
CLEANING_AND_TRASH_DISPOSAL("points",
"You got 100 points",
"Congratulations on the Beach cleaning."),
CLEANING_WITHOUT_TRASH_DISPOSAL("points",
"You got 30 points first",
"We're checking trash can registration information"),
TRASHCAN_CREDENTIAL("points",
"You got 70 points",
"The trash can registration was confirmed");

private final String title;
private final String message;
Expand Down