fix: set custom domains feature on orgs (#1623)

This commit is contained in:
Livio Amstutz
2021-04-20 10:46:09 +02:00
committed by GitHub
parent 32bfd25b28
commit f5a8cb20a5
2 changed files with 6 additions and 1 deletions

View File

@@ -68,7 +68,8 @@ func (wm *OrgFeaturesWriteModel) NewSetEvent(
loginPolicyRegistration,
loginPolicyUsernameLogin,
passwordComplexityPolicy,
labelPolicy bool,
labelPolicy,
customDomain bool,
) (*org.FeaturesSetEvent, bool) {
changes := make([]features.FeaturesChanges, 0)
@@ -109,6 +110,9 @@ func (wm *OrgFeaturesWriteModel) NewSetEvent(
if wm.LabelPolicy != labelPolicy {
changes = append(changes, features.ChangeLabelPolicy(labelPolicy))
}
if wm.CustomDomain != customDomain {
changes = append(changes, features.ChangeCustomDomain(customDomain))
}
if len(changes) == 0 {
return nil, false