mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
12be21a3ff
creates events structures for initial projections and read models
28 lines
768 B
Go
28 lines
768 B
Go
package user
|
|
|
|
import (
|
|
"github.com/zitadel/zitadel/internal/v2/eventstore"
|
|
"github.com/zitadel/zitadel/internal/zerrors"
|
|
)
|
|
|
|
type HumanEmailVerifiedEvent eventstore.Event[eventstore.EmptyPayload]
|
|
|
|
const HumanEmailVerifiedType = humanPrefix + ".email.verified"
|
|
|
|
var _ eventstore.TypeChecker = (*HumanEmailVerifiedEvent)(nil)
|
|
|
|
// ActionType implements eventstore.Typer.
|
|
func (c *HumanEmailVerifiedEvent) ActionType() string {
|
|
return HumanEmailVerifiedType
|
|
}
|
|
|
|
func HumanEmailVerifiedEventFromStorage(event *eventstore.StorageEvent) (e *HumanEmailVerifiedEvent, _ error) {
|
|
if event.Type != e.ActionType() {
|
|
return nil, zerrors.ThrowInvalidArgument(nil, "USER-X3esB", "Errors.Invalid.Event.Type")
|
|
}
|
|
|
|
return &HumanEmailVerifiedEvent{
|
|
StorageEvent: event,
|
|
}, nil
|
|
}
|