From aaffd72032042834bb5b982fd9524a7427aa0f7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Dach?= Date: Wed, 5 Feb 2025 11:48:07 +0100 Subject: [PATCH] Add beatmap submission service URL to endpoint configuration --- osu.Game/Online/EndpointConfiguration.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/osu.Game/Online/EndpointConfiguration.cs b/osu.Game/Online/EndpointConfiguration.cs index 8f76da41fd..39dd72d41a 100644 --- a/osu.Game/Online/EndpointConfiguration.cs +++ b/osu.Game/Online/EndpointConfiguration.cs @@ -42,5 +42,10 @@ namespace osu.Game.Online /// The endpoint for the SignalR metadata server. /// public string MetadataEndpointUrl { get; set; } = string.Empty; + + /// + /// The root URL for the service handling beatmap submission. Does not include a trailing slash. + /// + public string? BeatmapSubmissionServiceUrl { get; set; } } }