(ctx context.Context, userID uuid.UUID)
| 3482 | } |
| 3483 | |
| 3484 | func (q *querier) GetGitSSHKey(ctx context.Context, userID uuid.UUID) (database.GitSSHKey, error) { |
| 3485 | return fetchWithAction(q.log, q.auth, policy.ActionReadPersonal, q.db.GetGitSSHKey)(ctx, userID) |
| 3486 | } |
| 3487 | |
| 3488 | func (q *querier) GetGroupAIBudget(ctx context.Context, groupID uuid.UUID) (database.GroupAiBudget, error) { |
| 3489 | // Reading a group's AI budget requires read on the parent group. |
nothing calls this directly
no test coverage detected