blob: 77947a762a26a090f3cbd7ce75bd3679cc6ebe9c [file] [log] [blame]
/**
* A module for the Profile Settings page
*
* @module app/profile-settings/index
* @exports app/profile-settings/index
*/
window.angular && (function(angular) {
'use strict';
angular
.module('app.profileSettings', ['ngRoute', 'app.common.services'])
// Route configuration
.config([
'$routeProvider',
function($routeProvider) {
$routeProvider.when('/profile-settings', {
'template':
require('./controllers/profile-settings-controller.html'),
'controller': 'profileSettingsController',
authenticated: true
})
}
]);
})(window.angular);