(ctx context.Context, arg []uuid.UUID)
| 2611 | } |
| 2612 | |
| 2613 | func (q *querier) GetAIProviderKeyPresence(ctx context.Context, arg []uuid.UUID) ([]uuid.UUID, error) { |
| 2614 | if err := q.authorizeContext(ctx, policy.ActionRead, rbac.ResourceAIProvider); err != nil { |
| 2615 | return nil, err |
| 2616 | } |
| 2617 | return q.db.GetAIProviderKeyPresence(ctx, arg) |
| 2618 | } |
| 2619 | |
| 2620 | func (q *querier) GetAIProviderKeys(ctx context.Context, includeDeleted bool) ([]database.AIProviderKey, error) { |
| 2621 | // Callers pass include_deleted=TRUE only from the dbcrypt key |
nothing calls this directly
no test coverage detected