Skip to content

Commit

Permalink
Merge branch 'dev' into #156-move-rooms-to-the-past-room-list-and-cha…
Browse files Browse the repository at this point in the history
…nge-settlestatus-automatically-when-the-participant-is-one
  • Loading branch information
cokia authored May 21, 2024
2 parents abda400 + 489803e commit e0c6415
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions src/modules/fcm.js
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ const sendMessageByTokens = async (tokens, type, title, body, icon, link) => {
click_action: "FLUTTER_NOTIFICATION_CLICK",
},
apns: { payload: { aps: { alert: { title, body } } } },
android: {
ttl: 0,
},
};
const { responses, failureCount } = await getMessaging().sendMulticast(
message
Expand Down Expand Up @@ -239,6 +242,9 @@ const sendMessageByTopic = async (topic, type, title, body, icon, link) => {
icon: icon || "/icons-512.png",
click_action: "FLUTTER_NOTIFICATION_CLICK",
},
android: {
ttl: 0,
},
};
await getMessaging().send(message);
logger.info(`Notification sent to token ${topic}`);
Expand Down
8 changes: 4 additions & 4 deletions src/views/reportEmailPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ reportEmailPage["no-settlement"] = (
</div><br />
위 방에서 채팅을 확인하실 수 있으며, <b>결제하신 분께 해당 금액을 정산</b>해주시기를 부탁드립니다.<br />
<b>미정산이 반복되는 경우 Taxi 서비스 이용이 제한</b>될 수 있음을 알려드립니다.<br />
문의가 필요하신 경우, <a href="${
문의가 필요하신 경우, 택시 서비스 내부의 <a href="${
new URL("/mypage?channeltalk=true", origin).href
}" target="_blank">택시 서비스 내부</a>의 &quot;채널톡 문의하기&quot;를 통해 채팅을 남겨주시거나, 또는 이 메일에 회신해 주셔도 됩니다.<br /><br />
}" target="_blank">채널톡 문의하기</a>를 통해 채팅을 남겨주시거나, 또는 이 메일에 회신해 주셔도 됩니다.<br /><br />
감사합니다.<br />
SPARCS Taxi팀 드림.
`
Expand Down Expand Up @@ -75,9 +75,9 @@ reportEmailPage["no-show"] = (
</div>
</div><br />
<b>미탑승이 반복되는 경우 Taxi 서비스 이용이 제한</b>될 수 있음을 알려드립니다.<br />
문의가 필요하신 경우, <a href="${
문의가 필요하신 경우, 택시 서비스 내부의 <a href="${
new URL("/mypage?channeltalk=true", origin).href
}" target="_blank">택시 서비스 내부</a>의 &quot;채널톡 문의하기&quot;를 통해 채팅을 남겨주시거나, 또는 이 메일에 회신해 주셔도 됩니다.<br /><br />
}" target="_blank">채널톡 문의하기</a>를 통해 채팅을 남겨주시거나, 또는 이 메일에 회신해 주셔도 됩니다.<br /><br />
감사합니다.<br />
SPARCS Taxi팀 드림.
`
Expand Down

0 comments on commit e0c6415

Please sign in to comment.