mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-05 09:42:04 +00:00
calculate and push 4 in 6 milestones
This commit is contained in:
27
internal/command/milestone.go
Normal file
27
internal/command/milestone.go
Normal file
@@ -0,0 +1,27 @@
|
||||
package command
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"github.com/zitadel/zitadel/internal/repository/milestone"
|
||||
)
|
||||
|
||||
// MilestonePushed writes a new event with a new milestone.Aggregate to the eventstore
|
||||
func (c *Commands) MilestonePushed(
|
||||
ctx context.Context,
|
||||
instanceID string,
|
||||
eventType milestone.PushedEventType,
|
||||
endpoints []string,
|
||||
primaryDomain string,
|
||||
) error {
|
||||
id, err := c.idGenerator.Next()
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
pushedEvent, err := milestone.NewPushedEventByType(ctx, eventType, milestone.NewAggregate(id, instanceID, instanceID), endpoints, primaryDomain)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
_, err = c.eventstore.Push(ctx, pushedEvent)
|
||||
return err
|
||||
}
|
||||
Reference in New Issue
Block a user