I have a Firebase Cloud Function that listens to some db change, and goes like this:
exports.onCreateList = functions.database.ref('/lists/{list_id}').onCreate(event => {
How do I get the auth object (the details of the user who performed the operation)?