|
|
|
@ -13,11 +13,16 @@ |
|
|
|
|
|
|
|
volo.abp.account.profile.update(input).then(function (result) { |
|
|
|
abp.notify.success(l('PersonalSettingsSaved')); |
|
|
|
|
|
|
|
volo.abp.account.profile.get().then(function(profile){ |
|
|
|
$("#ConcurrencyStamp").val(profile.concurrencyStamp); |
|
|
|
}); |
|
|
|
updateConcurrencyStamp(); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
abp.event.on('passwordChanged', updateConcurrencyStamp); |
|
|
|
|
|
|
|
function updateConcurrencyStamp(){ |
|
|
|
volo.abp.account.profile.get().then(function(profile){ |
|
|
|
$("#ConcurrencyStamp").val(profile.concurrencyStamp); |
|
|
|
}); |
|
|
|
} |
|
|
|
})(jQuery); |
|
|
|
|