(ctx context.Context)
| 2989 | } |
| 2990 | |
| 2991 | func (q *querier) GetChatExploreModelOverride(ctx context.Context) (string, error) { |
| 2992 | if err := q.authorizeContext(ctx, policy.ActionRead, rbac.ResourceDeploymentConfig); err != nil { |
| 2993 | return "", err |
| 2994 | } |
| 2995 | return q.db.GetChatExploreModelOverride(ctx) |
| 2996 | } |
| 2997 | |
| 2998 | func (q *querier) GetChatFileByID(ctx context.Context, id uuid.UUID) (database.ChatFile, error) { |
| 2999 | file, err := q.db.GetChatFileByID(ctx, id) |
nothing calls this directly
no test coverage detected