File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
engine/access/rest/websockets/models Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ package models
3
3
const (
4
4
SubscribeAction = "subscribe"
5
5
UnsubscribeAction = "unsubscribe"
6
- ListSubscriptionsAction = "list_subscription "
6
+ ListSubscriptionsAction = "list_subscriptions "
7
7
)
8
8
9
9
// BaseMessageRequest represents a base structure for incoming messages.
10
10
type BaseMessageRequest struct {
11
11
// SubscriptionID is UUID generated by either client or server to uniquely identify subscription.
12
- // It is empty for 'list_subscription ' action
12
+ // It is empty for 'list_subscriptions ' action
13
13
SubscriptionID string `json:"subscription_id,omitempty"`
14
14
Action string `json:"action"` // Action is an action to perform (e.g. 'subscribe' to some data)
15
15
}
You can’t perform that action at this time.
0 commit comments