Skip to content

Commit

Permalink
include propagated claims when creating UserAccount from MUR (#330)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbryzak authored Oct 6, 2023
1 parent bf3a59c commit 6afc978
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/test/useraccount/useraccount.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ func NewUserAccountFromMur(mur *toolchainv1alpha1.MasterUserRecord, modifiers ..
},
},
Spec: toolchainv1alpha1.UserAccountSpec{
UserID: mur.Spec.UserID,
Disabled: mur.Spec.Disabled,
UserID: mur.Spec.UserID,
Disabled: mur.Spec.Disabled,
PropagatedClaims: mur.Spec.PropagatedClaims,
},
}
Modify(ua, modifiers...)
Expand Down

0 comments on commit 6afc978

Please sign in to comment.