in public/javascripts/app/controllers/RestoreFormCtrl.js [28:38]
this.restore = function() {
$scope.isLoading = true;
RestoreService
.restore($scope.selectedDestination.systemId)
.then((data) => {
//redirect back to composer
var url = $scope.selectedDestination.composerPrefix;
window.location.href = `${url}/content/${$routeParams.contentId}`;
})
.catch((err) => mediator.publish('error', err));
};