1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-12-24 13:43:12 +02:00

remove unused function

This commit is contained in:
Scott Bishel 2023-03-29 12:31:40 -06:00
parent f91d05f078
commit 8c4fc9b200

View File

@ -465,12 +465,6 @@ func (ws *Server) getListenersForBlock(blockID string) []*websocketSession {
return ws.listenersByBlock[blockID]
}
// getListenersForTeam returns the listeners subscribed to a
// team changes.
func (ws *Server) getListenersForTeam(teamID string) []*websocketSession {
return ws.listenersByTeam[teamID]
}
// getListenersForUser returns the listener for a user subscribed to a
// team changes.
func (ws *Server) getListenerForUser(teamID, userID string) *websocketSession {