Random rbac helper funcs
()
| 428 | // Random rbac helper funcs |
| 429 | |
| 430 | func RandomRBACAction() policy.Action { |
| 431 | all := rbac.AllActions() |
| 432 | return all[must(cryptorand.Intn(len(all)))] |
| 433 | } |
| 434 | |
| 435 | func RandomRBACObject() rbac.Object { |
| 436 | return rbac.Object{ |