Summary Table

Categories Total Count
PII 0
URL 0
DNS 0
EKL 0
IP 0
PORT 0
VsID 0
CF 0
AI 0
VPD 0
PL 0
Other 0

File Content

define([
'app',
'LandingController'
],
function (app) {
"use strict";

app.config(function ($stateProvider, $urlRouterProvider) {
$urlRouterProvider.otherwise(function ($injector) {
var $state = $injector.get('$state');
$state.go('main.auth.home');
});
$stateProvider
.state('main.auth.home', {
url: '/home',
data: {
homeName: "VA Tool Set Home",
headerTitle: "VA Tool Set"
},
views: {
'@main': {
templateUrl: 'src/modules/home/landing/landing_template.html',
controller: 'LandingController'
}
}
});
});
});