mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 08:49:13 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
33 lines
548 B
Go
33 lines
548 B
Go
package domain
|
|
|
|
import (
|
|
"golang.org/x/text/language"
|
|
|
|
"github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
|
)
|
|
|
|
type CustomText struct {
|
|
models.ObjectRoot
|
|
|
|
State CustomTextState
|
|
Default bool
|
|
Template string
|
|
Key string
|
|
Language language.Tag
|
|
Text string
|
|
}
|
|
|
|
type CustomTextState int32
|
|
|
|
const (
|
|
CustomTextStateUnspecified CustomTextState = iota
|
|
CustomTextStateActive
|
|
CustomTextStateRemoved
|
|
|
|
customTextStateCount
|
|
)
|
|
|
|
func (m *CustomText) IsValid() bool {
|
|
return m.Key != "" && m.Language != language.Und && m.Text != ""
|
|
}
|