8 lines
191 B
TypeScript
8 lines
191 B
TypeScript
|
import { context } from "@budibase/backend-core"
|
||
|
import { User } from "@budibase/types"
|
||
|
|
||
|
export function get(userId: string) {
|
||
|
const db = context.getAppDB()
|
||
|
return db.get<User>(userId)
|
||
|
}
|