Files
opencloud/services/invitations/pkg/service/v0/errors.go
Daniël Franke f244869e91 Use keycloak for invitations backend.
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.
2023-03-24 11:43:11 +01:00

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")
)