mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 01:37:31 +00:00
refactor(v2): init events (#7823)
creates events structures for initial projections and read models
This commit is contained in:
27
internal/v2/user/human_email_verified.go
Normal file
27
internal/v2/user/human_email_verified.go
Normal file
@@ -0,0 +1,27 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user