How do I add custom session data which can be accessed by an AngularJS SPA? I tried System.Web.HttpContext.Current.Session["AccountId"]
but this threw an error indicating Session was null.
Note: AccountId in this case may or may not be a property of the User. Similar to a TenantId, a User's AccountId is nullable and users' without an AccountId set should be able to use any AccountId like impersonation.
ABP v3.3.0 and MVC v5.2.3
Thanks in advance!