mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
41 lines
982 B
Go
41 lines
982 B
Go
package command
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/logging"
|
|
"github.com/caos/zitadel/internal/domain"
|
|
"github.com/caos/zitadel/internal/eventstore"
|
|
)
|
|
|
|
type Step16 struct {
|
|
DefaultMessageTexts []domain.CustomMessageText
|
|
}
|
|
|
|
func (s *Step16) Step() domain.Step {
|
|
return domain.Step16
|
|
}
|
|
|
|
func (s *Step16) execute(ctx context.Context, commandSide *Commands) error {
|
|
return commandSide.SetupStep16(ctx, s)
|
|
}
|
|
|
|
func (c *Commands) SetupStep16(ctx context.Context, step *Step16) error {
|
|
fn := func(iam *IAMWriteModel) ([]eventstore.Command, error) {
|
|
iamAgg := IAMAggregateFromWriteModel(&iam.WriteModel)
|
|
events := make([]eventstore.Command, 0)
|
|
|
|
for _, text := range step.DefaultMessageTexts {
|
|
mailEvents, _, err := c.setDefaultMessageText(ctx, iamAgg, &text)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
events = append(events, mailEvents...)
|
|
}
|
|
|
|
logging.Log("SETUP-4k0LL").Info("default message text set up")
|
|
return events, nil
|
|
}
|
|
return c.setup(ctx, step, fn)
|
|
}
|