taweesoft

Dhammastupa Register Notification

Jun 12th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const REGISTER_ENDPOINT = 'https://us-central1-proofspelling.cloudfunctions.net/push/register'
  2.  
  3. export default {
  4.   register: (userId, pushId, groups) => {
  5.     return fetch(REGISTER_ENDPOINT, {
  6.       method: 'POST',
  7.       headers: {
  8.         'Content-Type': 'application/json'
  9.       },
  10.       body: {
  11.         userId,
  12.         pushId,
  13.         groups
  14.       }
  15.     })
  16.   }
  17. }
Add Comment
Please, Sign In to add comment