mirror of
https://github.com/osukey/osukey.git
synced 2025-08-04 23:24:04 +09:00
Add neighboring builds handling;
+ provoke angry AppVeyor
This commit is contained in:
@ -7,14 +7,16 @@ namespace osu.Game.Online.API.Requests
|
||||
{
|
||||
public class GetChangelogBuildRequest : APIRequest<APIChangelog>
|
||||
{
|
||||
private string url;
|
||||
/// <param name="url">This will need to be changed to "long Id"
|
||||
/// Placeholder for testing</param>
|
||||
GetChangelogBuildRequest(string url)
|
||||
private readonly string name;
|
||||
private readonly string version;
|
||||
|
||||
public GetChangelogBuildRequest(string streamName, string buildVersion)
|
||||
{
|
||||
this.url = url;
|
||||
name = streamName;
|
||||
version = buildVersion;
|
||||
}
|
||||
protected override string Uri => @"";
|
||||
protected override string Target => url;
|
||||
|
||||
//protected override string Target => $@"changelog/{name}/{version}";
|
||||
protected override string Uri => @"https://api.myjson.com/bins/ya5q2"; // for testing
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user