RemoveGroupingPolicy removes a role inheritance rule from the current policy.
(params ...interface{})
| 421 | |
| 422 | // RemoveGroupingPolicy removes a role inheritance rule from the current policy. |
| 423 | func (e *Enforcer) RemoveGroupingPolicy(params ...interface{}) (bool, error) { |
| 424 | return e.RemoveNamedGroupingPolicy("g", params...) |
| 425 | } |
| 426 | |
| 427 | // RemoveGroupingPolicies removes role inheritance rules from the current policy. |
| 428 | func (e *Enforcer) RemoveGroupingPolicies(rules [][]string) (bool, error) { |