mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-24 05:51:33 -05:00
As keycloak already supports everything needed for the required invitation flow, it's ideal to use as the first backend to create users and to send them invitation mails. This PR implements that as the first and (for now) only backend.
11 lines
245 B
Go
11 lines
245 B
Go
package service
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotFound = errors.New("query target not found")
|
|
ErrBadRequest = errors.New("bad request")
|
|
ErrMissingEmail = errors.New("missing email address")
|
|
ErrBackend = errors.New("backend error")
|
|
)
|