Fix user.id in password reset request (Fixes #1752)

This commit is contained in:
Emanuel Schuetze 2015-12-10 15:03:18 +01:00
parent f98b4f7840
commit 9001456d19
1 changed files with 3 additions and 3 deletions

View File

@ -316,9 +316,9 @@ angular.module('OpenSlidesApp.users.site', ['OpenSlidesApp.users'])
type: 'input',
templateOptions: {
label: gettextCatalog.getString('Default password'),
addonRight: { text: 'Reset', class: 'fa fa-undo', onClick: function () {
// TODO: find a way to get user.id
//$http.post('/rest/users/user/' + model.id + '/reset_password/', {})
addonRight: { text: 'Reset', class: 'fa fa-undo', onClick:
function (options, scope) {
$http.post('/rest/users/user/' + scope.model.id + '/reset_password/', {})
}
}
}