Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enhancement: allow sending multiple userIDs in one SSE event #4501

Merged
merged 1 commit into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changelog/unreleased/allow-multiple-event-user-ids.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Enhancement: allow sending multiple user ids in one sse event

Sending multiple user ids in one sse event is now possible which reduces the number of sent events.

https://github.com/cs3org/reva/pull/4501
4 changes: 2 additions & 2 deletions pkg/events/sse.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"encoding/json"
)

// SendSEE instructs the sse service to send a notification to a user
// SendSSE instructs the sse service to send one or multiple notifications
type SendSSE struct {
UserID string
UserIDs []string
Type string
Message []byte
}
Expand Down
Loading