()
| 366 | } |
| 367 | |
| 368 | func (t Template) RBACObject() rbac.Object { |
| 369 | return rbac.ResourceTemplate.WithID(t.ID). |
| 370 | InOrg(t.OrganizationID). |
| 371 | WithACLUserList(t.UserACL). |
| 372 | WithGroupACL(t.GroupACL) |
| 373 | } |
| 374 | |
| 375 | func (t GetFileTemplatesRow) RBACObject() rbac.Object { |
| 376 | return rbac.ResourceTemplate.WithID(t.TemplateID). |
nothing calls this directly
no test coverage detected