itslekan
itslekan
CCConvex Community
Created by itslekan on 3/7/2025 in #support-community
Unconventional Authentication Implementation
I'll check it out
14 replies
CCConvex Community
Created by itslekan on 3/7/2025 in #support-community
Unconventional Authentication Implementation
ur next level🙌
14 replies
CCConvex Community
Created by itslekan on 3/7/2025 in #support-community
Unconventional Authentication Implementation
I'm using bcrypt to encrypt it, but after looking through the source code I realized that I need to alter the compare function
const existingAccount = await ctx.db
.query("authAccounts")
.withIndex("providerAndAccountId", (q) =>
q.eq("provider", provider.id).eq("providerAccountId", account.id),
)
.unique();
const existingAccount = await ctx.db
.query("authAccounts")
.withIndex("providerAndAccountId", (q) =>
q.eq("provider", provider.id).eq("providerAccountId", account.id),
)
.unique();
this is the current comparing function from: https://github.com/get-convex/convex-auth/blob/main/src/server/implementation/mutations/createAccountFromCredentials.ts GitHub convex-auth/src/server/implementation/mutations/createAccountFromCr... Library for built-in auth. Contribute to get-convex/convex-auth development by creating an account on GitHub. so my plan was to basically copy over the phone verification implementation to my backend Everything was going fine until the function "callCreateAccountFromCredentials" I think it's using a custom runMutation function here
export const callCreateAccountFromCredentials = async (
ctx: ActionCtx,
args: Infer<typeof createAccountFromCredentialsArgs>,
): Promise<ReturnType> => {
return ctx.runMutation("auth:store" as any, {
args: {
type: "createAccountFromCredentials",
...args,
},
});
};
export const callCreateAccountFromCredentials = async (
ctx: ActionCtx,
args: Infer<typeof createAccountFromCredentialsArgs>,
): Promise<ReturnType> => {
return ctx.runMutation("auth:store" as any, {
args: {
type: "createAccountFromCredentials",
...args,
},
});
};
the runMutation is passing in "auth:store" so I can't change it to my own edited version of the createAccountFromCredentialsImpl I've tried everything I can think of Please if anyone could help that would be great. I've been on this for 2 days now
14 replies
CCConvex Community
Created by itslekan on 3/7/2025 in #support-community
Unconventional Authentication Implementation
Let me look into it and get back to you
14 replies
CCConvex Community
Created by itslekan on 3/7/2025 in #support-community
Unconventional Authentication Implementation
but I imagine we'll still need the phone number
14 replies