()
| 882 | } |
| 883 | |
| 884 | func AllACLPredicates() []string { |
| 885 | preds := make([]string, 0, len(aclPredicateMap)) |
| 886 | for pred := range aclPredicateMap { |
| 887 | preds = append(preds, pred) |
| 888 | } |
| 889 | return preds |
| 890 | } |
| 891 | |
| 892 | // IsInternalPredicate returns true if the predicate is in the internal predicate list. |
| 893 | // Currently, `uid` is the only such candidate. |