(ctx context.Context, ids []uuid.UUID)
| 3281 | } |
| 3282 | |
| 3283 | func (q *querier) GetChatsByWorkspaceIDs(ctx context.Context, ids []uuid.UUID) ([]database.Chat, error) { |
| 3284 | return fetchWithPostFilter(q.auth, policy.ActionRead, q.db.GetChatsByWorkspaceIDs)(ctx, ids) |
| 3285 | } |
| 3286 | |
| 3287 | func (q *querier) GetChatsUpdatedAfter(ctx context.Context, updatedAfter time.Time) ([]database.GetChatsUpdatedAfterRow, error) { |
| 3288 | // Telemetry queries are called from system contexts only. |
nothing calls this directly
no test coverage detected