Nelson Sousa
Nelson Sousa
Explore posts from servers
BABetter Auth
Created by anand248 on 3/5/2025 in #bug-reports
Performance of `auth.api.hasPermission` seem to be very slow
out of curiosity, how are you measuring the time it takes to query?
5 replies
BABetter Auth
Created by cardinal on 3/3/2025 in #help
Am trying to create an org when a user signed up.
Currently: - You can create an organization without a member only by using the adapter directly (not using better-auth methods); - You can invite existing users to an existing organization; You can not: - Invite a user to sign-up; - Invite a member to sign-up and directly assign a organization. However, there is a PR opened few weeks ago, but not receiving a lot of love here: https://github.com/better-auth/better-auth/pull/1436 that you can get inspired by
7 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
np
21 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
Then it is probably something else 😄 You'll need to dig into that, just like I did into qwik/fastify integration
21 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
I am not using asResponse: true.
21 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
In case you are using fastify with qwik, then you can just include that in your fastify-qwik.ts file
21 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
Since I am using Qwik framework, I opened a PR on the qwik repository (already merged) that you can check here: https://github.com/QwikDev/qwik/commit/d6e9510769de015d5b09867ff4331a05d14e1409
21 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
Yes, I debugged it and found out it was a problem related with content type parsers of fastify
21 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
Hi @b3nab
21 replies
BABetter Auth
Created by palicz on 3/1/2025 in #help
Route based access control
const isCurrentUserAllowedToDeleteCategory = await auth.api.userHasPermission({
headers: request.headers,
body: {
userId: session?.user.id,
permission: {
category: ['delete'],
},
},
});
const isCurrentUserAllowedToDeleteCategory = await auth.api.userHasPermission({
headers: request.headers,
body: {
userId: session?.user.id,
permission: {
category: ['delete'],
},
},
});
5 replies
BABetter Auth
Created by palicz on 3/1/2025 in #help
Route based access control
I am currently getting the session and performing auth.api.userHasPermission() on the server.
5 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
No description
21 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
I believe it is something related with fastify... maybe this integration is not supported yet. The request that arrives is kinda weird, no email, no password, etc
21 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
Working directly with postman 🤔
21 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
No description
21 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
@bekacru do you think this could be related with better-call? 🤔
21 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
http://ip:port/api/auth/go returns ok
21 replies
BABetter Auth
Created by Nelson Sousa on 2/14/2025 in #help
SyntaxError: Unexpected end of JSON input
Also I am using an IP+port as an HOST, not sure if it is related
21 replies