-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix group update #654
Fix group update #654
Conversation
fn default_add_installation_policy() -> MembershipPolicies { | ||
MembershipPolicies::allow() | ||
} | ||
|
||
fn default_remove_installation_policy() -> MembershipPolicies { | ||
MembershipPolicies::deny() | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These seemed like a bit of needless indirection to only be called in the new()
constructor above.
remove_installation_policy: default_remove_installation_policy(), | ||
add_installation_policy: MembershipPolicies::allow(), | ||
remove_installation_policy: MembershipPolicies::deny(), | ||
update_group_name_policy: MembershipPolicies::allow() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@cameronvoell What should this update_group_name_policy
be default set to?
cc @neekolas
Closing. The sames fixes were brought in #643 |
Summary
After issue-ing
dev/gen-proto.sh
,Tests were failing with
This patch fixes the acute issue of the missing field, but idk if there is more work to do here to have it correctly implemented?