1
admin@SYNTAQ created
5 Answer(s)
-
0
hi
You can try:
For mvc var tenancyName = app.session.tenant ? app.session.tenant.tenancyName : null; For angular injector AppSessionService
-
0
Thanks,
My app.session object is undefined. I am logged on and running .net Core MVC ASPNET ZERO 8.8
-
0
FYI also - logged on as a tenant
-
1
hi
The code of appSession exists in
wwwroot/Common/Scripts/appSession.js
.var app = app || {}; (function () { abp.services.app.session.getCurrentLoginInformations({ async: false }) .done(function (result) { app.session = result; }); })();
-
0
Thank you