OneTime Invites API change (#5)
* add temp invites to api * update api to net6
This commit is contained in:
@@ -38,6 +38,7 @@ namespace MareSynchronos.API
|
|||||||
Task GroupLeave(string gid);
|
Task GroupLeave(string gid);
|
||||||
Task GroupRemoveUser(string gid, string uid);
|
Task GroupRemoveUser(string gid, string uid);
|
||||||
Task GroupUnbanUser(string gid, string uid);
|
Task GroupUnbanUser(string gid, string uid);
|
||||||
|
Task<List<string>> GroupCreateTempInvite(string gid, int amount);
|
||||||
Task<ConnectionDto> Heartbeat(string characterIdentification);
|
Task<ConnectionDto> Heartbeat(string characterIdentification);
|
||||||
Task<bool> FilesIsUploadFinished();
|
Task<bool> FilesIsUploadFinished();
|
||||||
Task UserPushData(CharacterCacheDto characterCache, List<string> visibleCharacterIds);
|
Task UserPushData(CharacterCacheDto characterCache, List<string> visibleCharacterIds);
|
||||||
@@ -49,7 +50,6 @@ namespace MareSynchronos.API
|
|||||||
Task AdminUpdateOrAddBannedUser(BannedUserDto dto);
|
Task AdminUpdateOrAddBannedUser(BannedUserDto dto);
|
||||||
Task AdminUpdateOrAddForbiddenFile(ForbiddenFileDto dto);
|
Task AdminUpdateOrAddForbiddenFile(ForbiddenFileDto dto);
|
||||||
Task FilesUploadStreamAsync(string hash, IAsyncEnumerable<byte[]> fileContent);
|
Task FilesUploadStreamAsync(string hash, IAsyncEnumerable<byte[]> fileContent);
|
||||||
|
|
||||||
Task Client_UserUpdateClientPairs(ClientPairDto clientPairDto);
|
Task Client_UserUpdateClientPairs(ClientPairDto clientPairDto);
|
||||||
Task Client_UpdateSystemInfo(SystemInfoDto systemInfo);
|
Task Client_UpdateSystemInfo(SystemInfoDto systemInfo);
|
||||||
Task Client_UserReceiveCharacterData(CharacterCacheDto clientPairDto, string characterIdent);
|
Task Client_UserReceiveCharacterData(CharacterCacheDto clientPairDto, string characterIdent);
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net5.0</TargetFramework>
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user