mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-18 05:47:32 +00:00
c5d6325897
* feat: change mail template to new query side * feat: adminapi message text * feat: adminapi message text * feat: adminapi message text * feat: message texts * feat: admin texts * feat: tests * feat: tests * feat: custom login text on adminapi * feat: custom login text * feat: custom login text * feat: message text prepare test * feat: login text texts * feat: custom login text * merge main * fix go.sum Co-authored-by: Livio Amstutz <livio.a@gmail.com>
32 lines
985 B
Go
32 lines
985 B
Go
package notification
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/caos/logging"
|
|
"github.com/caos/zitadel/internal/command"
|
|
sd "github.com/caos/zitadel/internal/config/systemdefaults"
|
|
"github.com/caos/zitadel/internal/notification/repository/eventsourcing"
|
|
"github.com/caos/zitadel/internal/query"
|
|
"github.com/rakyll/statik/fs"
|
|
|
|
_ "github.com/caos/zitadel/internal/notification/statik"
|
|
)
|
|
|
|
type Config struct {
|
|
APIDomain string
|
|
Repository eventsourcing.Config
|
|
}
|
|
|
|
func Start(ctx context.Context, config Config, systemDefaults sd.SystemDefaults, command *command.Commands, queries *query.Queries, hasStatics bool) {
|
|
statikFS, err := fs.NewWithNamespace("notification")
|
|
logging.Log("CONFI-7usEW").OnError(err).Panic("unable to start listener")
|
|
|
|
apiDomain := config.APIDomain
|
|
if !hasStatics {
|
|
apiDomain = ""
|
|
}
|
|
_, err = eventsourcing.Start(config.Repository, statikFS, systemDefaults, command, queries, apiDomain)
|
|
logging.Log("MAIN-9uBxp").OnError(err).Panic("unable to start app")
|
|
}
|