Add more CloudScript functions, start of EnterMatchmaking
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using Prospect.Server.Api.Services.CloudScript.Models;
|
||||
|
||||
namespace Prospect.Server.Api.Services.CloudScript.Functions;
|
||||
|
||||
[CloudScriptFunction("SetMatchAllowJoin")]
|
||||
public class SetMatchAllowJoin : ICloudScriptFunction<FYSetAllowJoinRequest, object?>
|
||||
{
|
||||
public Task<object?> ExecuteAsync(FYSetAllowJoinRequest request)
|
||||
{
|
||||
return Task.FromResult<object?>(new
|
||||
{
|
||||
sessionId = (object?)null,
|
||||
success = false
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user