Answered

Custom Notifications for MIRO board

  • 2 June 2021
  • 1 reply
  • 144 views

I wan to show a custom message bar on top of all the board across my team. I can push a message on the board through web plugin using showNotification() method but if I use method, the notification disappears after few seconds.

I want to ensure this message never disappears from the board and every time user open the board, this message is visible. What's the best way of achieving this.

icon

Best answer by Anthony Roux 4 June 2021, 14:41

View original

1 reply

Userlevel 5
Badge +1

Hi @anupam UJJWAL,

 

It is not possible to use showNotification() for a long time message display and we do not have any other component offering such a feature. The only way would be to create something on the board directly. I will raise this feedback to the team to add it to our backlog to be prioritised.

 

Regarding the event, the closest one we offer is:

 

You can use it like this:

miro.addListener('ONLINE_USERS_CHANGED', widget => {
miro.showNotification("Hello new user");
})

 

Reply