Fix report urls

This commit is contained in:
jvyden 2022-07-27 16:58:18 -04:00
parent 5c47a52c70
commit 82c5a80f32
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
3 changed files with 4 additions and 4 deletions

View file

@ -49,7 +49,7 @@ public class ReportController : ControllerBase
await WebhookHelper.SendWebhook(
title: "New grief report",
description: $"Submitted by {user.Username}\n" +
$"To view it, click [here]({ServerConfiguration.Instance.ExternalUrl}/admin/report/{report.ReportId}).",
$"To view it, click [here]({ServerConfiguration.Instance.ExternalUrl}/moderation/report/{report.ReportId}).",
dest: WebhookHelper.WebhookDestination.Moderation
);