chat-ui / src /routes /r /[id] /+page.server.ts
coyotte508's picture
coyotte508 HF staff
♻️ Duplicate convos in DB when they are shared (#44)
76d4779 unverified
raw
history blame
No virus
416 Bytes
import type { PageServerLoad } from './$types';
import { collections } from '$lib/server/database';
import { error } from '@sveltejs/kit';
export const load: PageServerLoad = async ({ params }) => {
const conversation = await collections.sharedConversations.findOne({
_id: params.id
});
if (!conversation) {
throw error(404, 'Conversation not found');
}
return {
messages: conversation.messages
};
};