Chad
Chad
With the move to ASP.Net Core 1 MVC, wouldn't it be best if the IDocumentSession was injected as a service in the Startup.cs file? Essentially using the ASP.Net Core DI?...
I apologize for the delay. I have since moved on and will be implementing TipTap in my app. I appreciate the response. đ
I am experiencing this as well. A user will end up with multiple subscriptions on their document in Firestore -- one is active (with their successful payment) while they may...
> Having the same issue, it's causing so many problems to us âšī¸ > > I think it's also somewhat related to this [stripe-samples/firebase-subscription-payments#43](https://github.com/stripe-samples/firebase-subscription-payments/issues/43), it looks like the code isn't...
@thorsten-stripe Any chance Stripe is aware of this issue and working on a solution, please? đ
> Seems like our attempt to remove the claim doesn't work as expected: https://stackoverflow.com/a/65081669 > > Still need to reproduce, but my guess is we need to blow away all...
Ah, I don't have any other projects currently... packed those away some time ago. But I wouldn't put it past Node being the culprit. Could be a coincidence that it...
I'm super interested in this project getting maintained again. Such a brilliant idea. Heck, you could probably charge like $49 for it and people would buy it. I just want...
I get the same exact error. I initialize my IAsyncDocumentSession like so: ``` ravenSession.Advanced.UseOptimisticConcurrency = true; RavenSession = ravenSession; var provider = new Microsoft.Owin.Security.DataProtection.DpapiDataProtectionProvider("Example"); UserManager = new UserManager(new RavenUserStore(ravenSession)) {...
Got some time to dig into this... turns out you need to create the `RavenUserEmail` yourself. In your `AccountController`,when you register a user, create the `RavenUserEmail` at the same time:...