Browse Source
Add Mapperly object mapper to Account module
pull/23648/head
maliming
5 months ago
No known key found for this signature in database
GPG Key ID: A646B9CB645ECEA4
1 changed files with
4 additions and
1 deletions
-
modules/account/src/Volo.Abp.Account.Application/Volo/Abp/Account/AbpAccountApplicationModule.cs
|
|
|
@ -1,4 +1,5 @@ |
|
|
|
using Volo.Abp.Mapperly; |
|
|
|
using Microsoft.Extensions.DependencyInjection; |
|
|
|
using Volo.Abp.Mapperly; |
|
|
|
using Volo.Abp.Emailing; |
|
|
|
using Volo.Abp.Identity; |
|
|
|
using Volo.Abp.Modularity; |
|
|
|
@ -28,5 +29,7 @@ public class AbpAccountApplicationModule : AbpModule |
|
|
|
{ |
|
|
|
options.Applications["MVC"].Urls[AccountUrlNames.PasswordReset] = "Account/ResetPassword"; |
|
|
|
}); |
|
|
|
|
|
|
|
context.Services.AddMapperlyObjectMapper<AbpAccountApplicationModule>(); |
|
|
|
} |
|
|
|
} |
|
|
|
|