This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.controller('DashCtrl', function($window, $rootScope, $scope, $ionicPlatform, $rootScope, $cordovaPush, $ionicUser, $ionicPush, $ionicLoading) { | |
$ionicPlatform.ready(function(){ | |
Parse.initialize("eWhdkaASJ2BVx7oFd0o5fBk6ZtBZ3KVRXduOH1D7", "cPH2rkZ1hrFjPbF8qNjwIYATrV3CXWdKUWlC40ro"); | |
$ionicUser.identify({ | |
user_id: $ionicUser.generateGUID(), | |
// OR, user the device's UUID | |
//user_id: device.uuid | |
}); | |
$ionicPush.register({ | |
canShowAlert: true, //Should new pushes show an alert on your screen? | |
canSetBadge: true, //Should new pushes be allowed to update app icon badges? | |
canPlaySound: true, //Should notifications be allowed to play a sound? | |
canRunActionsOnWake: true, // Whether to run auto actions outside the app, | |
onNotification: function(notification) { | |
alert("Notification aaya hai!\n"+JSON.stringify(notification)) | |
} | |
}) | |
//success | |
$rootScope.$on('$cordovaPush:tokenReceived', function(event, data) { | |
alert('Got token '+ data.token +' Platform: '+ data.platform); | |
// Do something with the token | |
var newFriend = Parse.Object.extend('userListTutorial'); | |
alert("Parse extended"); | |
var friend = new newFriend(); | |
alert("friend created, now saving"); | |
friend.save({regid: data.token}).then(function(object){ | |
alert("Saved to Parse!"); | |
},function(obj, err){ | |
alert("err"); | |
}); | |
}); | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment