You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In 4.0 we've further cut the complexity of the package by auth module down to an obverser for state changes to simplify the package.
28
+
In 4.0 we've further cut the complexity of the package by auth module down to a [`firebase.User`](https://firebase.google.com/docs/reference/js/firebase.User) observer to simplify the package.
29
29
30
30
```
31
31
import { AngularFireAuth } from 'angularfire2/auth';
@@ -53,6 +53,8 @@ logout() {
53
53
}
54
54
```
55
55
56
+
(See what methods are available to `firebase.auth.Auth` in the Firebase reference guide)[https://firebase.google.com/docs/reference/js/firebase.auth.Auth].
57
+
56
58
### FirebaseListFactory and FirebaseObjectFactory API Changes
57
59
58
60
If you directly use `FirebaseListFactory` or `FirebaseObjectFactory` you will no longer be able to pass in a string, it will instead expect a Firebase database reference.
0 commit comments