profi sayfası
This commit is contained in:
13
lib/data.ts
Normal file
13
lib/data.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { cache } from 'react'
|
||||
import { createClient } from '@/lib/supabase-server'
|
||||
|
||||
export const getProfile = cache(async (userId: string) => {
|
||||
const supabase = createClient()
|
||||
const { data } = await supabase
|
||||
.from('profiles')
|
||||
.select('*')
|
||||
.eq('id', userId)
|
||||
.single()
|
||||
|
||||
return data
|
||||
})
|
||||
Reference in New Issue
Block a user