Hi
question 1:
You need to set files property in the Theme
folder to embedded files, This is a template error, we will fix it in the next version.
Add :
question 2
~~I see the change time information is removed in version 2.8, So you can't see, you should clean up the publish directory and re-publish~~.
I can't reproduce this problem,you should clean up the publish directory and re-publish
question 3
I can't reproduce this problem, But you can place mini.css
in the styles folder to fix this problem.
Currently the entity extension system does not seem to support foreign key configuration, it was in the 2.9 milestone.
I will try reproduce your problem and can you provide the ipams-global-styles.css
content?
Hi, Please see https://github.com/abpframework/abp/issues/3766.
Are you talk about foreign key?
Please see https://github.com/abpframework/abp/issues/3959
Could you explain the problem in detail?
Please following : https://github.com/abpframework/abp/issues/4089 and https://github.com/abpframework/abp/issues/4089. Available in the next version.
Update Volo.Abp.Commercial.SuiteTemplates to 2.8.0.
Note: Please do not update abp suite unless you update your solution. Abp suite may not be compatible with your old version.
Try:
await this._accountAppService.SendPasswordResetCodeAsync(new SendPasswordResetCodeDto { Email=identityUser.Email, "Angular" });
Hi @roop.yekollu@atlasair.com
I use the project you provided, but can't reproduce this problem. Just one thing, you use automapper map object, but you did not initialize the collection in the parameterless constructor.null reference exception will be thrown when adding.
In addition, some boundary condition checks are missing in your code, like:
private async Task<bool> AddToSubEventsAsync(Alert alert, IEnumerable<string> subEvents)
{
Check.NotNull(alert, nameof(alert));
Check.NotNull(subEvents, nameof(subEvents));
var EventTypesMasterList = await _eventTypeRepository.GetListAsync();
foreach (var subEvent in subEvents)
{
var eventType = EventTypesMasterList.FirstOrDefault(e => e.Name == subEvent);
alert.AddSubEvent(eventType.Id); // If eventType object is null, you will get null reference exception.
}
return true;
}