Hi is there anyway to activate sound on notifications? I searched the settings, but I don’t see a setting for this.
It’s funny that you brought this up. Somebody on my team was just asking me about that earlier today. To my knowledge, there is no sound.
She keeps missing notifications on someone replies to a comment she left. For the time being she’s installing the app on her phone because that does have a notification.
The reason I keep the mobile app on my phone is the notifications
Just to add here don’t forget it is so easy these days to set-up an automation to send notifications to your chat app of choice, I am fairly sure I have posted about Slack, Twist and Teams before and I know there is also a post about Discord and just for completeness Google Chat is simple as well:
const messageBody = `{
"cards": {
"header": {
"title": "Web Site Deployment",
"subtitle": "${deploy_field_title_string_value}",
"imageUrl": "https://developers.google.com/chat/images/quickstart-app-avatar.png"
},
"sections": [
{
"header": "Deployment Details",
"widgets": [
{
"keyValue": {
"icon": "DESCRIPTION",
"topLabel": "${deploy_field_site_name_value}",
"content": "${deploy_field_branch_value}",
"bottomLabel": "${deploy_field_build_state_title}"
}
}
]
},
{
"header": "Tape Record Details",
"widgets": [
{
"buttons": [
{
"textButton": {
"text": "Tape Record",
"onClick": {
"openLink": {
"url": "${deploy_field_url_value}"
}
}
}
},
{
"textButton": {
"text": "Commit URL",
"onClick": {
"openLink": {
"url": "${deploy_field_commit_url_value}"
}
}
}
}
]
}
]
}
]
}
}`;
const response = await http.post(var_url, {
headers: {
"Content-Type": "application/json"
},
data: messageBody
});
Thanks it would be great if there was option to have sound on desktop notifications, I guess I could just send updates to slack for now, but sound for notifications is a must.