Wallet/src/js/controllers/onboarding/notifications.js

10 lines
267 B
JavaScript
Raw Normal View History

2016-08-25 16:31:47 -03:00
'use strict';
2016-08-29 11:56:31 -03:00
angular.module('copayApp.controllers').controller('notificationsController', function($scope, $state, profileService) {
2016-08-25 16:31:47 -03:00
$scope.allowNotif = function() {
2016-08-29 11:56:31 -03:00
profileService.pushNotificationsInit();
2016-08-25 16:31:47 -03:00
$state.go('onboarding.backupRequest');
}
});