21 lines
502 B
Go
21 lines
502 B
Go
|
package ws
|
||
|
|
||
|
import (
|
||
|
"github.com/mattermost/focalboard/server/model"
|
||
|
)
|
||
|
|
||
|
// UpdateMsg is sent on block updates.
|
||
|
type UpdateMsg struct {
|
||
|
Action string `json:"action"`
|
||
|
Block model.Block `json:"block"`
|
||
|
}
|
||
|
|
||
|
// WebsocketCommand is an incoming command from the client.
|
||
|
type WebsocketCommand struct {
|
||
|
Action string `json:"action"`
|
||
|
WorkspaceID string `json:"workspaceId"`
|
||
|
Token string `json:"token"`
|
||
|
ReadToken string `json:"readToken"`
|
||
|
BlockIDs []string `json:"blockIds"`
|
||
|
}
|