Khalil Hammami
Khalil Hammami
@tjmonsi @FluorescentHallucinogen the user object returned by firebase-auth include already these methods
@RoseReatherford firebase-auth is missing "app-name" attribute which should be "app" that you have defined in firebase-app otherwise firebase-auth will use "default" as app-name for firebase config or default is not...
@RoseReatherford just remove app from firebase-app & app-name from firebase-auth you have malformed attributes on firebase-app (it looks like you have copied web setup from firebase console as is it)....
@colincannon-acp check Firebase console > Authentication > SIGN-IN METHOD > "one account per email address" if it's active. you have to enable it. once you have signed in with one...
https://github.com/Polymer/polymer-cli/issues/701
@sowsan you're using firebase-app more than one time in your code, if you're using different firebase projects in your app you need to set a name for each firebase-app element...
``` js var user = firebase.app('app_name').auth().currentUser; var credential; //from the last successful auth. user.reauthenticate(credential).then(function() { // User re-authenticated. }, function(error) { // An error happened. }); ``` app_name you gave...
Hi @soderlind, could you please fix a date for time picker like "1/1/1970" instead of server time. I used to sort custom posts by start time but when I update...