Thanks @rvanwoezik .
Hi,
You can take a look at this topic #1073. Since you are working with a template, the offered solution seems a good way.
Hi,
Your user class is derived from AbpUser. CreatorUser is here <a class="postlink" href="https://github.com/aspnetboilerplate/module-zero/blob/09cb578f09ee0318b479aa31dd0ceff56a5d218d/src/Abp.Zero/Authorization/Users/AbpUser.cs#L145">https://github.com/aspnetboilerplate/mo ... er.cs#L145</a>.
Hi,
Current angular2 is just for preview, don't use it in your product for now. Probably it will be ready in 2-3 weeks. I suggest you to wait until that.
Hi,
The date property in your request is string and it's not in the right format, probably that is your problem. If we can fix datepicker problem, this problem will be solved as well.
Hi,
Do you have any javascript error ? Did you added necessary javascript files to your project ?
Yes, I was thinking the same thing :)
Hi,
This action does not update audit logs, it just changes audit log information before you save it. Here is the place where we create an AuditInfo <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/blob/a706b7e8f497a4afe2bb746892fd6c010b0875fc/src/Abp/Auditing/AuditingHelper.cs#L100">https://github.com/aspnetboilerplate/as ... er.cs#L100</a>
If you create your own AuditInfoProvider, and use ReplaceService to replace current AuditInfoProvider with your version, your AuditInfoProvider's fill method will be called here <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/blob/a706b7e8f497a4afe2bb746892fd6c010b0875fc/src/Abp/Auditing/AuditingHelper.cs#L116">https://github.com/aspnetboilerplate/as ... er.cs#L116</a>.
In this way, you can change TenantId, UserId, ImpersonatorUserId, ImpersonatorTenantId as you like.
You can create a similar class like this one <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/blob/a706b7e8f497a4afe2bb746892fd6c010b0875fc/src/Abp/Auditing/NullAuditInfoProvider.cs">https://github.com/aspnetboilerplate/as ... rovider.cs</a>.