c7a00ea283
Currently the webadmin has a fixed built-in client id, which is added on server startup.
12 lines
252 B
JavaScript
Executable File
12 lines
252 B
JavaScript
Executable File
'use strict';
|
|
|
|
var SettingsController = function ($scope, Client) {
|
|
console.debug('SettingsController');
|
|
|
|
$scope.user = Client.getUserInfo();
|
|
|
|
$scope.changePassword = function () {
|
|
window.location.href = '#/userpassword';
|
|
};
|
|
};
|