mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
a4763b1e4c
* features * features * features * fix json tags * add features handler to auth * mocks for tests * add setup step * fixes * add featurelist to auth api * grandfather state and typos * typo * merge new-eventstore * fix login policy tests * label policy in features * audit log retention
15 lines
220 B
Go
15 lines
220 B
Go
package models
|
|
|
|
type Field int32
|
|
|
|
const (
|
|
Field_AggregateType Field = 1 + iota
|
|
Field_AggregateID
|
|
Field_LatestSequence
|
|
Field_ResourceOwner
|
|
Field_EditorService
|
|
Field_EditorUser
|
|
Field_EventType
|
|
Field_CreationDate
|
|
)
|