-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26797 from peppy/update-endpoints
Update endpoints to final production endpoints
- Loading branch information
Showing
3 changed files
with
8 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence. | ||
// See the LICENCE file in the repository root for full licence text. | ||
|
||
#nullable disable | ||
|
||
namespace osu.Game.Online | ||
{ | ||
/// <summary> | ||
|
@@ -13,36 +11,36 @@ public class EndpointConfiguration | |
/// <summary> | ||
/// The base URL for the website. | ||
/// </summary> | ||
public string WebsiteRootUrl { get; set; } | ||
public string WebsiteRootUrl { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// The endpoint for the main (osu-web) API. | ||
/// </summary> | ||
public string APIEndpointUrl { get; set; } | ||
public string APIEndpointUrl { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// The OAuth client secret. | ||
/// </summary> | ||
public string APIClientSecret { get; set; } | ||
public string APIClientSecret { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// The OAuth client ID. | ||
/// </summary> | ||
public string APIClientID { get; set; } | ||
public string APIClientID { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// The endpoint for the SignalR spectator server. | ||
/// </summary> | ||
public string SpectatorEndpointUrl { get; set; } | ||
public string SpectatorEndpointUrl { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// The endpoint for the SignalR multiplayer server. | ||
/// </summary> | ||
public string MultiplayerEndpointUrl { get; set; } | ||
public string MultiplayerEndpointUrl { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// The endpoint for the SignalR metadata server. | ||
/// </summary> | ||
public string MetadataEndpointUrl { get; set; } | ||
public string MetadataEndpointUrl { get; set; } = string.Empty; | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters