Nico Domino
Nico Domino
Thanks, looking much better! I have a few more notes, mostly small repo organisation type stuff. I'll just add them as a checklist here: - [ ] Add `triplit` to...
Hey @employee451 first of all thanks for the contribution! Can you give me a short run down of the implications of this for existing fauna adapter users?
@employee451 what do you think about this migration script in FQL? Looks like it should do the trick to me: ```fauna Collection.byName("accounts")!.update({ name: "Account" indexes: { byUserId: { terms: [{...
Ah forgot to drop the existing indexes, here's a slightly updated one: ```ts Collection.byName("accounts")!.update({ name: "Account" indexes: { byUserId: { terms: [{ field: "userId" }] }, byProviderAndProviderAccountId: { terms: [{...
Awesome, if you cuold add that to this PR, i'll approve it again :+1:
Okay merged it, thanks again! Like I said, we plan on getting a release out this weekend, so I'll keep you posted :+1:
@employee451 available in `@auth/[email protected]` now :tada:
This has gotten very out of date unfortunately. @nina-alin if you're still interested in getting this merged, could you update to latest `main` as the basefor your PR? Might be...
Hey sorry for the confusion folks, we've released a whole new docs website which includes some nice walkthroughs for all the authentication types. For example for OAuth: https://authjs.dev/getting-started/authentication/oauth Also there's...
Hey @sourabpramanik thanks for the contribution! Without having taken a closer look at the code, it seems like you've got a lot of the basics covered. As you mentioned in...