Update API for naming Syncshell

This commit is contained in:
Luca Genovese
2025-09-19 22:33:44 +02:00
parent ff262bf690
commit 3b0bf00f6c

View File

@@ -10,7 +10,7 @@ namespace MareSynchronos.API.SignalR;
public interface IMareHub public interface IMareHub
{ {
const int ApiVersion = 1026; const int ApiVersion = 1027;
const string Path = "/mare"; const string Path = "/mare";
Task<bool> CheckClientHealth(); Task<bool> CheckClientHealth();
@@ -81,7 +81,7 @@ public interface IMareHub
Task GroupClear(GroupDto group); Task GroupClear(GroupDto group);
Task<GroupPasswordDto> GroupCreate(); Task<GroupPasswordDto> GroupCreate(string? alias);
Task<List<string>> GroupCreateTempInvite(GroupDto group, int amount); Task<List<string>> GroupCreateTempInvite(GroupDto group, int amount);