mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
3500961fbb
* fix: add AddSMTPConfig to admin api * addsmtpconfig * fix: add RemoveSMTPConfig and RemoveSMSProvider to admin api * update twilio, token fcn * fix account switcher, twilio token set, cleanup dialog * cleanup * buttons Co-authored-by: Livio Amstutz <livio.a@gmail.com>
10 lines
152 B
Go
10 lines
152 B
Go
package domain
|
|
|
|
type SMTPConfigState int32
|
|
|
|
const (
|
|
SMTPConfigStateUnspecified SMTPConfigState = iota
|
|
SMTPConfigStateActive
|
|
SMTPConfigStateRemoved
|
|
)
|