Skip to content

Commit

Permalink
Merge pull request #25 from gloddy-dev/fix/#21
Browse files Browse the repository at this point in the history
[FIX]: notification 내용 수정
  • Loading branch information
twoosky authored Dec 10, 2023
2 parents 9da3f1b + 072b6d8 commit 0a9c529
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,31 +5,31 @@ enum class NotificationType(
val content: String
) {
APPLY_APPROVE(
{ "👌Your applied gathering has been approved!" },
{ "👌 Your applied gathering has been approved!" },
"Wishing you enjoy a fun and safe gathering."
),
APPLY_REFUSE(
{ "😢The gathering you applied for has been declined." },
{ "😢 The gathering you applied for has been declined." },
"There are various other gatherings available for you! Would you like to look for another gathering?"
),
APPLY_CREATE(
{ "💌A new gathering application has arrived!" },
"We’re awaiting the host’s approval for the gathering! please warmly welcome the new members."
"We’re awaiting the host’s approval for the gathering!"
),
GROUP_LEAVE(
{ value: String? -> "😢$value has just left the group." },
{ value: String? -> "😢 $value has just left the group." },
"Shall we go check the group participants?"
),
GROUP_ARTICLE_CREATE(
{ "🗣️Please Check the New Notice!" },
{ "🗣️ Please Check the New Notice!" },
"A new post has been added."
),
GROUP_APPROACHING_START(
{ "⏰The gathering starts in 1 hour!" },
{ " The gathering starts in 1 hour!" },
"Are you ready to enjoy the gathering? \n" + "Check the announcement for a better gathering!"
),
GROUP_END(
{ "😆Did you enjoy the gathering?" },
{ "😆 Did you enjoy the gathering?" },
"Please rate the attendees of the gathering! \n" + "Select the best partner with reward stickers."
)
;
Expand Down
2 changes: 1 addition & 1 deletion push/src/main/kotlin/gloddy/command/GroupingPushType.kt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ enum class GroupingPushType(
"There are various other gatherings available for you! Would you like to look for another gathering?",
false),
APPLY_CREATE({ "A new gathering application has arrived! 💌" },
"We’re awaiting the host’s approval for the gathering! please warmly welcome the new members.",
"We’re awaiting the host’s approval for the gathering!",
true),
GROUP_LEAVE({ value: String? -> "$value has just left the group. \uD83E\uDD72" },
"Shall we go check the group participants?",
Expand Down

0 comments on commit 0a9c529

Please sign in to comment.