(sec string, ptype string, rules [][]string)
| 501 | } |
| 502 | |
| 503 | func (e *Enforcer) SelfRemovePolicies(sec string, ptype string, rules [][]string) (bool, error) { |
| 504 | return e.removePoliciesWithoutNotify(sec, ptype, rules) |
| 505 | } |
| 506 | |
| 507 | func (e *Enforcer) SelfRemoveFilteredPolicy(sec string, ptype string, fieldIndex int, fieldValues ...string) (bool, error) { |
| 508 | return e.removeFilteredPolicyWithoutNotify(sec, ptype, fieldIndex, fieldValues) |
nothing calls this directly
no test coverage detected