Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. exports.UserCoin = functions.region('asia-east2').https.onCall((data, context) => {
  2.  
  3. const uid = context.auth.uid
  4. const num = data.num;
  5.  
  6. admin.database().ref('/user').child(uid).child("coin").once('value', function(snapshot) {
  7.  
  8. coin = snapshot.val();
  9.  
  10. });
  11.  
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement