(ctx context.Context, arg database.GetGroupByOrgAndNameParams)
| 3502 | } |
| 3503 | |
| 3504 | func (q *querier) GetGroupByOrgAndName(ctx context.Context, arg database.GetGroupByOrgAndNameParams) (database.Group, error) { |
| 3505 | return fetch(q.log, q.auth, q.db.GetGroupByOrgAndName)(ctx, arg) |
| 3506 | } |
| 3507 | |
| 3508 | func (q *querier) GetGroupMembers(ctx context.Context, includeSystem bool) ([]database.GroupMember, error) { |
| 3509 | if err := q.authorizeContext(ctx, policy.ActionRead, rbac.ResourceSystem); err != nil { |