mirror of https://github.com/akveo/blur-admin
22 lines
419 B
JavaScript
22 lines
419 B
JavaScript
/**
|
|
* @author v.lugovsky
|
|
* created on 16.12.2015
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
|
|
angular.module('BlurAdmin.pages.profile', [])
|
|
.config(routeConfig);
|
|
|
|
/** @ngInject */
|
|
function routeConfig($stateProvider) {
|
|
$stateProvider
|
|
.state('profile', {
|
|
url: '/profile',
|
|
templateUrl: 'app/pages/profile/profile.html',
|
|
controller: 'ProfilePageCtrl',
|
|
});
|
|
}
|
|
|
|
})();
|