Browse Source
Merge pull request #25093 from abpframework/auto-merge/rel-10-2/4428
Merge branch dev with rel-10.2
pull/25103/head
Volosoft Agent
2 weeks ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
10 additions and
3 deletions
-
modules/account/src/Volo.Abp.Account.Web/Pages/Account/Manage.cshtml.cs
-
npm/ng-packs/package.json
|
|
|
@ -47,8 +47,15 @@ public class ManageModel : AccountPageModel |
|
|
|
return Page(); |
|
|
|
} |
|
|
|
|
|
|
|
public virtual Task<IActionResult> OnPostAsync() |
|
|
|
public virtual async Task<IActionResult> OnPostAsync() |
|
|
|
{ |
|
|
|
return Task.FromResult<IActionResult>(Page()); |
|
|
|
ProfileManagementPageCreationContext = new ProfileManagementPageCreationContext(ServiceProvider); |
|
|
|
|
|
|
|
foreach (var contributor in Options.Contributors) |
|
|
|
{ |
|
|
|
await contributor.ConfigureAsync(ProfileManagementPageCreationContext); |
|
|
|
} |
|
|
|
|
|
|
|
return Page(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@ -146,7 +146,7 @@ |
|
|
|
"tslib": "^2.3.0", |
|
|
|
"tslint": "~6.1.0", |
|
|
|
"typescript": "~5.9.0", |
|
|
|
"vite": "^7.0.0", |
|
|
|
"vite": "^8.0.0", |
|
|
|
"vitest": "^4.0.0", |
|
|
|
"zone.js": "~0.15.0" |
|
|
|
}, |
|
|
|
|