Mateo Ivankovic

Results 3 comments of Mateo Ivankovic

# Using generics instead of interfaces as message data What will change: `realtime/boards.go:` - For every event create a struct that reflects the data structure of the event Example: ```json...

deletedNote is declared as this: const deletedNote = state.find((n) => n.id === action.noteId); But state only stores notes that are visible for the client. Which leads to deletedNote to be...

> > Splitted up the board subscription into two channels. Prior every user subscribed to `boards.` now based on the role each user connects to `boards..participant` or `boards..moderator`. > >...