Ben Winding

Results 95 comments of Ben Winding

Hmm sorry for the late response @dhstack @VihG , That firebase error occurs when a function somehow passed into the Dataprovider query, instead of a string field name. Can you...

Yes that's a good point, perhaps a flag in the options would be a good way to handle this, so that people can have the option

> This is especially important now that filenames can be unique with #134 as there could be a build up of old files. Good point @dhstack, thanks for reminding me....

Hi @gespispace, Apologies for the late response, yeah that should be possible, would you be able to create an example project for us to look at, so we can understand...

Hi @tarunkishore2303, > Many false imports are found in the package Not sure what this means, can you post the terminal output? Also send through a PR if you like!...

Hi @sic4change, As per this [StackOverflow question](https://stackoverflow.com/questions/52060397/how-to-redirect-to-some-other-route-after-successful-authentication-in-react-adm) you can wrap the `FirebaseAuthProvider` and perform a redirect after login: ### Wrapping the AuthProvider ``` js const authProvider = FirebaseAuthProvider(firebaseConfig, options); const...

Hmmm strange, I thought the logout would still work. What exactly happens when you click the logout button?

Hi @sic4change, Can you try using `login` for the redirect, like this: ``` js .catch(() => { // Auth error return { redirectTo: "/login" }; }), ``` Kind regards, Ben

Hey @benfoley, Thanks for contributing, that's a great idea. I'll merge in your PR and add it as an option to the configuration options. Cheers, Ben

Hey Guys, Yes _Authorization_ this is a pretty crucial feature for most admin panels. Right now this is possible using the standard method of Authorization within `react-admin` [see this link...