about summary refs log tree commit diff
path: root/MatrixUtils.Web/Pages/Tools/Moderation/UserTrace.razor
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-02-03 19:08:38 +0100
committerRory& <root@rory.gay>2025-02-03 19:08:38 +0100
commit2ceb4825c45876a4a75c410557d14cd8beb76222 (patch)
tree1e4c120a85c3344ed87551d62faa1c1212836f97 /MatrixUtils.Web/Pages/Tools/Moderation/UserTrace.razor
parentLibMatrix changes (diff)
downloadMatrixUtils-2ceb4825c45876a4a75c410557d14cd8beb76222.tar.xz
Various cleanup, rewrite history viewer
Diffstat (limited to 'MatrixUtils.Web/Pages/Tools/Moderation/UserTrace.razor')
-rw-r--r--MatrixUtils.Web/Pages/Tools/Moderation/UserTrace.razor6
1 files changed, 5 insertions, 1 deletions
diff --git a/MatrixUtils.Web/Pages/Tools/Moderation/UserTrace.razor b/MatrixUtils.Web/Pages/Tools/Moderation/UserTrace.razor

index 3768da4..0d622cc 100644 --- a/MatrixUtils.Web/Pages/Tools/Moderation/UserTrace.razor +++ b/MatrixUtils.Web/Pages/Tools/Moderation/UserTrace.razor
@@ -3,7 +3,6 @@ @using LibMatrix.RoomTypes @using System.Collections.ObjectModel @using LibMatrix -@using LibMatrix.EventTypes.Spec.State @using LibMatrix.EventTypes.Spec.State.RoomInfo <h3>User Trace</h3> <hr/> @@ -184,5 +183,10 @@ { Membership: "ban", Reason: not null } => $"Banned by {state.Sender} at {time} for {membership.Reason}", }; } + + private async Task ExportJson() { + var json = matches.ToJson(); + + } } \ No newline at end of file