Merge pull request #1766 from emanuelschuetze/fix1752

Fix user.id in password reset request (Fixes #1752)
This commit is contained in:
Oskar Hahn 2015-12-10 22:19:51 +01:00
commit c9adeb7fbb
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/', {})
}
}
}