'use strict'; angular.module('copay.send').controller('SendController', function($scope, $rootScope, $location) { $scope.title = 'Send'; if (!$rootScope.peerId) { $location.path('signin'); } });