2022-03-24 16:21:34 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
2022-04-26 23:01:45 +00:00
|
|
|
es_models "github.com/zitadel/zitadel/internal/eventstore/v1/models"
|
|
|
|
iam_es_model "github.com/zitadel/zitadel/internal/iam/repository/eventsourcing/model"
|
2022-03-24 16:21:34 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (o *Org) appendAddDomainPolicyEvent(event *es_models.Event) error {
|
|
|
|
o.DomainPolicy = new(iam_es_model.DomainPolicy)
|
|
|
|
err := o.DomainPolicy.SetData(event)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
o.DomainPolicy.ObjectRoot.CreationDate = event.CreationDate
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *Org) appendChangeDomainPolicyEvent(event *es_models.Event) error {
|
|
|
|
return o.DomainPolicy.SetData(event)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *Org) appendRemoveDomainPolicyEvent() {
|
|
|
|
o.DomainPolicy = nil
|
|
|
|
}
|