mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 00:39:36 +00:00
7d235e3eed
* feat: sms config * feat: twilio as sms provider * feat:sms projection * feat: sms queries * feat: sms queries test * feat: sms configs * feat: sms configs sql file * fix merge * fix: rename from to sendername * fix: proto comments * fix: token as crypto * fix: tests * fix: sms config sender name to sender number * fix: sms config sender name to sender number * Update email.go * Update channel.go * Update V1.111__settings.sql Co-authored-by: Livio Amstutz <livio.a@gmail.com>
15 lines
283 B
Go
15 lines
283 B
Go
package domain
|
|
|
|
type SMSConfigState int32
|
|
|
|
const (
|
|
SMSConfigStateUnspecified SMSConfigState = iota
|
|
SMSConfigStateActive
|
|
SMSConfigStateInactive
|
|
SMSConfigStateRemoved
|
|
)
|
|
|
|
func (s SMSConfigState) Exists() bool {
|
|
return s != SMSConfigStateUnspecified && s != SMSConfigStateRemoved
|
|
}
|