aspnet-core, angular: 5.4.1 Can anyone tell me what the purpose of the following lines are? [https://github.com/aspnetzero/aspnet-zero-core/blob/dev/angular/src/app/admin/audit-logs/audit-log-detail-modal.component.html#L55-L61]) In the same modal can anyone tell me why we have (ngSubmit)="save()" on the form declaration at line 5 when there is no corresponding method in the component and the fact that this is a display only modal? The value AuditLogImpersonatedOperationInfo is not populated anywhere, can anyone tell me what's meant to be there?
3 Answer(s)
-
0
@BobIngham you are right, I have created an issue here <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/issues/1410">https://github.com/aspnetzero/aspnet-ze ... ssues/1410</a>
-
0
The issue has been fixed.
When an operation is done while host impersonates a tenant user, below message is displayed on the audit log detail window.
This operation is performed by another user on behalf of this user.
-
0
@ismcagdas, thanks, makes perfect sense now!