Browse Source

Remove todo.

pull/179/head
Halil İbrahim Kalkan 9 years ago
parent
commit
fc9b452937
  1. 4
      src/Volo.Abp.Identity.Web/wwwroot/modules/identity/views/users/index.js

4
src/Volo.Abp.Identity.Web/wwwroot/modules/identity/views/users/index.js

@ -1,6 +1,6 @@
(function() {
var _l = abp.localization.getResource('AbpIdentity'); //TODO: AbpIdentityWeb to const
var l = abp.localization.getResource('AbpIdentity');
var _identityUserAppService = volo.abp.identity.identityUser;
var _editModal = new abp.ModalManager({
@ -74,7 +74,7 @@
var id = $(this).data('id');
var userName = $(this).data('userName');
if (confirm(_l('UserDeletionConfirmationMessage', userName))) {
if (confirm(l('UserDeletionConfirmationMessage', userName))) {
_identityUserAppService
.delete(id)
.then(function () {

Loading…
Cancel
Save