Create profile settings page
Adding a profile settings page so readonly and operator
roles are able to change their own password.
Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com>
Change-Id: Iee9536255ad47f4df4af8746c1e01da37c407f2b
diff --git a/app/profile-settings/index.js b/app/profile-settings/index.js
new file mode 100644
index 0000000..77947a7
--- /dev/null
+++ b/app/profile-settings/index.js
@@ -0,0 +1,25 @@
+/**
+ * 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);