mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 04:18:01 +00:00
28 lines
816 B
Go
28 lines
816 B
Go
|
package user
|
||
|
|
||
|
import (
|
||
|
"github.com/zitadel/zitadel/internal/v2/eventstore"
|
||
|
"github.com/zitadel/zitadel/internal/zerrors"
|
||
|
)
|
||
|
|
||
|
type HumanInitCodeSucceededEvent eventstore.Event[eventstore.EmptyPayload]
|
||
|
|
||
|
const HumanInitCodeSucceededType = humanPrefix + ".initialization.check.succeeded"
|
||
|
|
||
|
var _ eventstore.TypeChecker = (*HumanInitCodeSucceededEvent)(nil)
|
||
|
|
||
|
// ActionType implements eventstore.Typer.
|
||
|
func (c *HumanInitCodeSucceededEvent) ActionType() string {
|
||
|
return HumanInitCodeSucceededType
|
||
|
}
|
||
|
|
||
|
func HumanInitCodeSucceededEventFromStorage(event *eventstore.StorageEvent) (e *HumanInitCodeSucceededEvent, _ error) {
|
||
|
if event.Type != e.ActionType() {
|
||
|
return nil, zerrors.ThrowInvalidArgument(nil, "USER-12A5m", "Errors.Invalid.Event.Type")
|
||
|
}
|
||
|
|
||
|
return &HumanInitCodeSucceededEvent{
|
||
|
StorageEvent: event,
|
||
|
}, nil
|
||
|
}
|