@velu What does that achieve? The user can still get the token.
Duplicate of aspnetzero/aspnet-zero-core#750
Related: https://docs.aspnetzero.com/documents/aspnet-core-angular/latest/Features-Angular-User-Management#excel-operations
You need to implement it.
Please read:
It is not a security flaw.
It was removed from *TestModule.cs in v6.8.0.
Seems like an XY problem. Can you describe a use case?
Duplicate of #6848
From Object To Object Mapping - Unit Tests:
- Always use IObjectMapper, do not use MapTo extension methods.
Change:
- categories.MapTo<List<CategoryListDto>>()
+ ObjectMapper.Map<List<CategoryListDto>>(categories)