1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-20 20:33:21 +08:00

Remove invalid report reason (and add osu-web references)

This commit is contained in:
Bartłomiej Dach 2023-05-06 15:01:57 +02:00
parent 52e5835be6
commit 6b4050ea52
No known key found for this signature in database

View File

@ -7,6 +7,11 @@ using osu.Game.Resources.Localisation.Web;
namespace osu.Game.Overlays.Chat
{
/// <remarks>
/// References:
/// https://github.com/ppy/osu-web/blob/0a41b13acf5f47bb0d2b08bab42a9646b7ab5821/app/Models/UserReport.php#L50
/// https://github.com/ppy/osu-web/blob/0a41b13acf5f47bb0d2b08bab42a9646b7ab5821/app/Models/UserReport.php#L39
/// </remarks>
public enum ChatReportReason
{
[Description("Insulting People")]
@ -17,10 +22,6 @@ namespace osu.Game.Overlays.Chat
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.ReportOptionsSpam))]
Spam,
[Description("Cheating")]
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.ReportOptionsCheating))]
FoulPlay,
[Description("Unwanted Content")]
[LocalisableDescription(typeof(UsersStrings), nameof(UsersStrings.ReportOptionsUnwantedContent))]
UnwantedContent,