mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 23:47:33 +00:00
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
|
|
}
|