mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-23 21:42:23 -05:00
* feat(groupware): start implementing JMAP websocket support for push notifications (unfinished) * groupware: add GetLatestEmailsSummaryForAllAccounts * add new vendored dependency: github.com/gorilla/websocket * jmap: add QueryEmailSummaries * openapi: start adding examples * openapi: add new tooling for api-examples.yaml injection * apidoc-process.ts: make it more typescript-y * bump @redocly/cli from 2.0.8 to latest 2.2.0
14 lines
267 B
Go
14 lines
267 B
Go
package jmap
|
|
|
|
import (
|
|
"github.com/opencloud-eu/opencloud/pkg/log"
|
|
)
|
|
|
|
func (j *Client) EnablePush(pushState string, session *Session, _ *log.Logger) Error {
|
|
return nil // TODO
|
|
}
|
|
|
|
func (j *Client) DisablePush(_ *Session, _ *log.Logger) Error {
|
|
return nil // TODO
|
|
}
|