Nessuna descrizione

navbar.js 171B

1234567
  1. angular.module('MyApp')
  2. .controller('NavbarCtrl', function($scope, $auth) {
  3. $scope.isAuthenticated = function() {
  4. return $auth.isAuthenticated();
  5. };
  6. });