shubhattin
Explore posts from serversBABetter Auth
•Created by shubhattin on 3/17/2025 in #help
How to trigger refresh/update of session if user info changed
finally got it working
22 replies
BABetter Auth
•Created by shubhattin on 3/17/2025 in #help
How to trigger refresh/update of session if user info changed
Looks the
authClient.admin.setRole
is also not updating the cache. In that case I will write the login to do this myself.
I need this functionality as currently I have invalidate their sessions (forcing logout). I want to find a better way to do this.22 replies
BABetter Auth
•Created by shubhattin on 3/17/2025 in #help
How to trigger refresh/update of session if user info changed
Seeing it from here.
https://github.com/better-auth/better-auth/blob/6b5c48b092b8760cb26701a30469fdce0d25c726/packages/better-auth/src/plugins/admin/admin.ts#L254
Should this work
Will test this out and update you
22 replies
BABetter Auth
•Created by shubhattin on 3/17/2025 in #help
How to trigger refresh/update of session if user info changed
What about this
22 replies
BABetter Auth
•Created by shubhattin on 3/17/2025 in #help
How to trigger refresh/update of session if user info changed
This is my simple plugin
22 replies
BABetter Auth
•Created by shubhattin on 3/17/2025 in #help
How to trigger refresh/update of session if user info changed
I saw this on the docs
Looks like in this example we can can update users role. I need to have this for my own plugin too. I also expect that this updates the secondary storage too.
22 replies
BABetter Auth
•Created by shubhattin on 3/17/2025 in #help
How to trigger refresh/update of session if user info changed
If not then I think that I should listing all the active sessions and update their in the cache as well. Did I get it correctly. This might be the only way forward currently as I can see
22 replies
BABetter Auth
•Created by shubhattin on 3/17/2025 in #help
How to trigger refresh/update of session if user info changed
Can a admin use
updateUser
and then will the cache be refreshed (redis).22 replies
BABetter Auth
•Created by shubhattin on 3/17/2025 in #help
How to trigger refresh/update of session if user info changed
I implemented this but this is not updating user info
Is this because of usage of secondary storage which caches it for 1 day
22 replies
BABetter Auth
•Created by King Louie on 3/16/2025 in #help
Conceptual questions on an auth setup with sveltekit and a separate api sever
In the above example
actually the
!cookie
is for the client as js cannot access the cookie, but on server cookie needs to be explicitly sent. The modification is to make it work on sever and client.27 replies
BABetter Auth
•Created by King Louie on 3/16/2025 in #help
Conceptual questions on an auth setup with sveltekit and a separate api sever
this part does not needs setup (server part of another app). Only the client configuration needs to match (I mean the plugins)
Like
27 replies
BABetter Auth
•Created by King Louie on 3/16/2025 in #help
Conceptual questions on an auth setup with sveltekit and a separate api sever
If you want to use better auth in another sveltekit frontend you still will need to setup auth-client there.
27 replies
BABetter Auth
•Created by King Louie on 3/16/2025 in #help
Conceptual questions on an auth setup with sveltekit and a separate api sever
I have a example from another codebase which depends upon the auth server here.
27 replies
BABetter Auth
•Created by King Louie on 3/16/2025 in #help
Conceptual questions on an auth setup with sveltekit and a separate api sever
You can refer the codebase I linked
https://github.com/shubhattin/tsc-users
27 replies
BABetter Auth
•Created by King Louie on 3/16/2025 in #help
Conceptual questions on an auth setup with sveltekit and a separate api sever
like for /login page
27 replies
BABetter Auth
•Created by King Louie on 3/16/2025 in #help
Conceptual questions on an auth setup with sveltekit and a separate api sever
and then you can access this in child +server and +page files
27 replies
BABetter Auth
•Created by King Louie on 3/16/2025 in #help
Conceptual questions on an auth setup with sveltekit and a separate api sever
Something like this
27 replies
BABetter Auth
•Created by King Louie on 3/16/2025 in #help
Conceptual questions on an auth setup with sveltekit and a separate api sever
Yes on required routes if you need to pass the session info as props to component or for redirecting purpose you have to do that
27 replies
BABetter Auth
•Created by King Louie on 3/16/2025 in #help
Conceptual questions on an auth setup with sveltekit and a separate api sever
Not sure about this, It should be needed I think (based on the examples from the docs).
I have not implemented jwt based auth so I don't think I can help much here.
You have implement and play around with it.
27 replies
BABetter Auth
•Created by King Louie on 3/16/2025 in #help
Conceptual questions on an auth setup with sveltekit and a separate api sever
Actually previously I was using JWT based auth (self implemented), But then I recently moved to session based auth using better auth.
27 replies