Reference to "storageBucket" on init

This commit is contained in:
Fabio
2019-07-01 12:52:20 -03:00
committed by GitHub
parent 8b0ee83c8c
commit 8250c7460b

View File

@ -6,18 +6,21 @@ module.exports = function(RED) {
RED.nodes.createNode(this,n);
this.cred = n.cred
this.dburl = n.dburl
this.sturl = n.sturl
this.admin = _admin
if(!init){
console.log('setting admin....')
init = true
this.credentials = JSON.parse(this.cred);
this.dburl = this.dburl
this.sturl = this.sturl
console.log('*** parsed firebase credentials: '+this.credentials.type+', project-id: '+this.credentials.project_id)
_admin.initializeApp({
credential: _admin.credential.cert(this.credentials),
databaseURL: this.dburl
databaseURL: this.dburl,
storageBucket: this.sturl
});
}
}
RED.nodes.registerType("firebase-config", FirebaseConfigNode);
}
}