2019-01-24 16:43:03 +08:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-09-25 19:53:24 +08:00
|
|
|
|
|
|
|
|
|
using System.Net.Http;
|
|
|
|
|
using osu.Framework.IO.Network;
|
|
|
|
|
using osu.Game.Online.Chat;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.API.Requests
|
|
|
|
|
{
|
|
|
|
|
public class LeaveChannelRequest : APIRequest
|
|
|
|
|
{
|
|
|
|
|
private readonly Channel channel;
|
|
|
|
|
|
2020-07-14 12:07:17 +08:00
|
|
|
|
public LeaveChannelRequest(Channel channel)
|
2018-09-25 19:53:24 +08:00
|
|
|
|
{
|
|
|
|
|
this.channel = channel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override WebRequest CreateWebRequest()
|
|
|
|
|
{
|
|
|
|
|
var req = base.CreateWebRequest();
|
|
|
|
|
req.Method = HttpMethod.Delete;
|
|
|
|
|
return req;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-14 12:07:17 +08:00
|
|
|
|
protected override string Target => $@"chat/channels/{channel.Id}/users/{User.Id}";
|
2018-09-25 19:53:24 +08:00
|
|
|
|
}
|
|
|
|
|
}
|