-import { createClient } from '@supabase/supabase-js'
+import { createClient } from '@supabase/supabase-js';
import { single, collection } from './supabase';
import { supabase } from '$lib/config/config';
const client = createClient(supabase.url, supabase.key);
-export const forum = (id: string, withTopics = false) => single<Forum>(client
- .from('forums')
- .select(withTopics ? `*,
+export const forum = (id: string, withTopics = false) =>
+ single<Forum>(
+ client
+ .from('forums')
+ .select(
+ withTopics
+ ? `*,
topics (
*
)
- `: '*' )
- .eq('id', id),
- null);
+ `
+ : '*'
+ )
+ .eq('id', id),
+ null
+ );
export const forums = collection<Forum>(client.from('forums').select('*'), []);