Added audit log

This commit is contained in:
2025-07-06 16:35:46 +02:00
parent 10913b0a21
commit 827e0eae6c
23 changed files with 312 additions and 131 deletions

View File

@@ -1,4 +1,5 @@
using Microsoft.AspNetCore.Components.Forms;
using HopFrame.Web.Components.Pages;
using Microsoft.AspNetCore.Components.Forms;
namespace HopFrame.Web.Services;
@@ -18,6 +19,6 @@ public interface IFileService {
/// Allows the user to upload a file and returns the uploaded file for processing.
/// </summary>
/// <returns>A task that returns an IBrowserFile representing the uploaded file.</returns>
public Task<IBrowserFile> UploadFile();
public Task<IBrowserFile> UploadFile(HopFrameTablePage page);
}