mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 10:27:33 +00:00
chore: move the go code into a subfolder
This commit is contained in:
32
apps/api/internal/domain/custom_text.go
Normal file
32
apps/api/internal/domain/custom_text.go
Normal file
@@ -0,0 +1,32 @@
|
||||
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 != ""
|
||||
}
|
Reference in New Issue
Block a user