Base solution for your next web application
Ends in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "aaron"

It is fixed in v6.6.1.

To access the ASP<span></span>.NET Zero private GitHub repositories, invite yourself to become a member of the ASP<span></span>.NET Zero organization using your GitHub username: https://aspnetzero.com/LicenseManagement

Copy the query in GetOrganizationUnitsAsync and make this change:

- _organizationUnitRepository.GetAll()
+ _organizationUnitRepository.GetAllIncluding(ou => ou.Children)

Revert your change to find what went wrong.

Can you reproduce with a fresh download?

What did you change?

Answer

ClaimsAbpSession gets values from the claims on the fly. Please see the source code that has been linked for your convenience.

The sample code for adding a new property to session has also been provided in the Gist linked a little further up.

Answer

AbpSession doesn't use cookies. ABP is open source, so you can see the source code of ClaimsAbpSession.

[Table("MMTABS")]
public class ASAPTabsEntity : FullAuditedEntity
{
    // [ForeignKey("ASAPModulesEntitiesId")]
    public virtual ASAPModulesEntity ASAPModulesEntities { get; set; }
    public virtual int? PARENT_MODULE_ID { get; set; }
}

[Table("MMMODL")]
public class ASAPModulesEntity : FullAuditedEntity
{
    public virtual ICollection<ASAPTabsEntity> ASAPTabsEntities { get; set; }
}

It's determined by selectBestRoute in auth-route-guard.ts.

Do it in the Account controller, as you have found.

Showing 341 to 350 of 1543 entries