remove unused field from Group
Some checks failed
Lint / golangci-lint (push) Successful in 9m59s
Declarative Tests / test (push) Failing after 18s

This commit is contained in:
Matthew Rich 2024-10-16 11:01:36 -07:00
parent 9943452ff9
commit 3f3278b73e

View File

@ -48,7 +48,6 @@ type Group struct {
ReadCommand *command.Command `json:"-" yaml:"-"` ReadCommand *command.Command `json:"-" yaml:"-"`
UpdateCommand *command.Command `json:"-" yaml:"-"` UpdateCommand *command.Command `json:"-" yaml:"-"`
DeleteCommand *command.Command `json:"-" yaml:"-"` DeleteCommand *command.Command `json:"-" yaml:"-"`
config data.ConfigurationValueGetter
Resources data.ResourceMapper `json:"-" yaml:"-"` Resources data.ResourceMapper `json:"-" yaml:"-"`
groupStatus *user.Group `json:"-" yaml:"-"` groupStatus *user.Group `json:"-" yaml:"-"`
} }