Skip to content

Instantly share code, notes, and snippets.

@DrDanL
Created May 9, 2018 06:28
Show Gist options
  • Save DrDanL/02e68f87eba87fd5bbbed62bbcf59dca to your computer and use it in GitHub Desktop.
Save DrDanL/02e68f87eba87fd5bbbed62bbcf59dca to your computer and use it in GitHub Desktop.
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);
exports.deleteProfile = functions.auth.user().onDelete( event => {
return admin.database().ref(`/user/${event.data.uid}`).remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment