Duplicate of #6980
https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp.Web.Resources/Abp/Framework/scripts/libs/abp.spin.js
Which error is that?
~~Yes, the authentication system uses refresh tokens.~~ The authentication system supports refresh tokens. However, calling the refresh token endpoint is only implemented for the Application.Client project, which is used by the Mobile projects.
Yes, changing RefreshTokenExpiration has effects.
Related: aspnetzero/aspnet-zero-core#2364
The UI part of that document was written for ASP<span></span>.NET MVC 5.x and AngularJS.
For ASP<span></span>.NET Core and Angular, it is angular/src/app/admin/users/users.component.html.
<th style="width: 150px" pSortableColumn="surname">
{{'Surname' | localize}}
<p-sortIcon field="surname"></p-sortIcon>
</th>
+ <th style="width: 150px">
+ {{'Address' | localize}}
+ </th>
<th style="width: 150px">
{{'Roles' | localize}}
</th>
<td style="width: 150px">
<span class="ui-column-title"> {{'Surname' | localize}}</span>
{{record.surname}}
</td>
+ <td style="width: 150px">
+ <span class="ui-column-title"> {{'Address' | localize}}</span>
+ {{record.address}}
+ </td>
<td style="width: 150px">
<span class="ui-column-title"> {{'Roles' | localize}}</span>
{{getRolesAsString(record.roles)}}
</td>
ASP<span></span>.NET Core or MVC 5?
Related: https://support.aspnetzero.com/QA/Questions/6848
Read the documentation on Extending Existing entities. https://docs.aspnetzero.com/documents/aspnet-core-angular/latest/Extending-Existing-Entities
Check the error in Logs.txt.
Make the changes not tracked by applying .AsNoTracking()
to your LINQ query or mapping entity
to a new instance.