Merge branch 'v3.0.x'

# Conflicts:
#	docs/modules/authentication.md
#	package.json
This commit is contained in:
Chris Bianca
2017-10-23 09:24:45 +01:00
16 changed files with 44 additions and 73 deletions

View File

@@ -1,4 +1,4 @@
const providerId = 'facebook';
const providerId = 'facebook.com';
export default class FacebookAuthProvider {
constructor() {

View File

@@ -1,4 +1,4 @@
const providerId = 'github';
const providerId = 'github.com';
export default class GithubAuthProvider {
constructor() {

View File

@@ -1,4 +1,4 @@
const providerId = 'google';
const providerId = 'google.com';
export default class GoogleAuthProvider {
constructor() {

View File

@@ -1,4 +1,4 @@
const providerId = 'twitter';
const providerId = 'twitter.com';
export default class TwitterAuthProvider {
constructor() {

View File

@@ -74,7 +74,6 @@ export default class Reference extends ReferenceBase {
this._refListeners = {};
this._database = database;
this._query = new Query(this, path, existingModifiers);
this.log = this._database.log;
this.log.debug('Created new Reference', this._getRefKey());
}