mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 20:08:02 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
21 lines
719 B
Go
21 lines
719 B
Go
package senders
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zitadel/zitadel/internal/notification/channels/fs"
|
|
"github.com/zitadel/zitadel/internal/notification/channels/log"
|
|
"github.com/zitadel/zitadel/internal/notification/channels/twilio"
|
|
)
|
|
|
|
func SMSChannels(ctx context.Context, twilioConfig *twilio.TwilioConfig, getFileSystemProvider func(ctx context.Context) (*fs.FSConfig, error), getLogProvider func(ctx context.Context) (*log.LogConfig, error)) (chain *Chain, err error) {
|
|
if twilioConfig != nil {
|
|
chain.channels = append(chain.channels, twilio.InitTwilioChannel(*twilioConfig))
|
|
}
|
|
chain, err = debugChannels(ctx, getFileSystemProvider, getLogProvider)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return chain, nil
|
|
}
|