hi
You can pass the token to Abp Commercial, and log in to the Abp Commercial after verification the token.
it's custom logic or any predefined method available in ABP Commercial? if predefined methods or endpoint, provide me the list of endpoints and methods?
i already tried this but it's not working,
this piece of code add in WebModule
any another configuration ?
any other configuration for Restrict user to multiple login ?
i already tried this but it's not working,
this piece of code add in WebModule
any another configuration ?
Hi,
what about the first and second point ?
What's the stacktrace? You haven't mentioned about the exception
Do you need stacktrace? Situation in Steps-
public async Task AddOrganization(OrganizationDto input)
{
try
{
var data = ObjectMapper.Map<OrganizationDto, Setup.Organization.Organization>(input);
~~await _orgContactRepository.InsertAsync(data, false);~~
}
**catch (DbUpdateException ex)
{
throw new CivitException(ex.Message, "2601");
}**
}