﻿(function () {
	'use strict';

	angular
      .module('app')
      .config(routerConfig);

	routerConfig.$inject = ['$stateProvider'];

	function routerConfig($stateProvider) {
		$stateProvider
            .state('userInternal', {
            	parent: 'main',
                url: 'userInternal',
            	views: {
            		'content@main': {
                        templateUrl: 'app/views/userInternal/userInternal.html',
                        controller: 'UserInternalController',
            			controllerAs: 'vm'
            		}
            	}
            });
	}
})();