mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
33 lines
844 B
Go
33 lines
844 B
Go
|
package command
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/caos/logging"
|
||
|
"github.com/caos/zitadel/internal/domain"
|
||
|
"github.com/caos/zitadel/internal/eventstore"
|
||
|
)
|
||
|
|
||
|
type Step15 struct {
|
||
|
DefaultMailTemplate domain.MailTemplate
|
||
|
}
|
||
|
|
||
|
func (s *Step15) Step() domain.Step {
|
||
|
return domain.Step15
|
||
|
}
|
||
|
|
||
|
func (s *Step15) execute(ctx context.Context, commandSide *Commands) error {
|
||
|
return commandSide.SetupStep15(ctx, s)
|
||
|
}
|
||
|
|
||
|
func (c *Commands) SetupStep15(ctx context.Context, step *Step15) error {
|
||
|
fn := func(iam *IAMWriteModel) ([]eventstore.EventPusher, error) {
|
||
|
_, mailTemplateEvent, err := c.changeDefaultMailTemplate(ctx, &step.DefaultMailTemplate)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
logging.Log("SETUP-2nfsd").Info("default mail template/text set up")
|
||
|
return []eventstore.EventPusher{mailTemplateEvent}, nil
|
||
|
}
|
||
|
return c.setup(ctx, step, fn)
|
||
|
}
|