Files
drive/packages/convex/user.ts

9 lines
274 B
TypeScript
Raw Permalink Normal View History

import { authenticatedMutation } from "./functions"
import { ensureRootDirectory as ensureRootDirectoryImpl } from "./model/filesystem"
export const ensureRootDirectory = authenticatedMutation({
handler: async (ctx) => {
return await ensureRootDirectoryImpl(ctx)
},
})