[Solved] Object paths in javascript

So, in ASP.NET Boilerplate there are services that we use in controllers. This services can be used in JavaScript file such as var _tenantService = abp.services.app.tenant; In view (cshtml) when we click on submit button, form is being sent to app services. _$form.find(‘button[type=”submit”]’).click(function (e) { e.preventDefault(); if (!_$form.valid()) { return; } var tenant = _$form.serializeFormToObject(); … Read more

[Solved] How does LDAP work in ASP.NET Boilerplate? [closed]

LDAP/Active Directory LdapAuthenticationSource is an implementation of external authentication to make users login with their LDAP (active directory) user name and password. If we want to use LDAP authentication, we first add Abp.Zero.Ldap nuget package to our project (generally to Core (domain) project). Then we should extend LdapAuthenticationSource for our application as shown below: public … Read more