Compare commits
8 Commits
9b2fea6fa4
...
chat-disab
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d78f9dafcc | ||
| 8e4432af45 | |||
|
|
d92496020e | ||
| 35f3390dda | |||
| efc0ef09f9 | |||
|
|
6b543529aa | ||
| dfb0594a5b | |||
|
|
8e7d7bf489 |
@@ -8,4 +8,5 @@ public enum GroupPermissions
|
||||
PreferDisableSounds = 0x2,
|
||||
DisableInvites = 0x4,
|
||||
PreferDisableVFX = 0x8,
|
||||
DisableChat = 0x10,
|
||||
}
|
||||
@@ -24,6 +24,11 @@ public static class GroupPermissionsExtensions
|
||||
return perm.HasFlag(GroupPermissions.PreferDisableVFX);
|
||||
}
|
||||
|
||||
public static bool IsDisableChat(this GroupPermissions perm)
|
||||
{
|
||||
return perm.HasFlag(GroupPermissions.DisableChat);
|
||||
}
|
||||
|
||||
public static void SetDisableInvites(this ref GroupPermissions perm, bool set)
|
||||
{
|
||||
if (set) perm |= GroupPermissions.DisableInvites;
|
||||
@@ -47,4 +52,10 @@ public static class GroupPermissionsExtensions
|
||||
if (set) perm |= GroupPermissions.PreferDisableVFX;
|
||||
else perm &= ~GroupPermissions.PreferDisableVFX;
|
||||
}
|
||||
|
||||
public static void SetDisableChat(this ref GroupPermissions perm, bool set)
|
||||
{
|
||||
if (set) perm |= GroupPermissions.DisableChat;
|
||||
else perm &= ~GroupPermissions.DisableChat;
|
||||
}
|
||||
}
|
||||
@@ -61,15 +61,10 @@ public readonly record struct ChatReportSubmitDto(
|
||||
string? AdditionalContext);
|
||||
|
||||
[MessagePackObject(keyAsPropertyName: true)]
|
||||
public readonly record struct ChatParticipantResolveRequestDto(
|
||||
public readonly record struct ChatParticipantMuteRequestDto(
|
||||
ChatChannelDescriptor Channel,
|
||||
string Token);
|
||||
|
||||
[MessagePackObject(keyAsPropertyName: true)]
|
||||
public readonly record struct ChatParticipantResolveResultDto(
|
||||
ChatChannelDescriptor Channel,
|
||||
ChatSenderDescriptor Sender,
|
||||
UserProfileDto? Profile);
|
||||
string Token,
|
||||
bool Mute);
|
||||
|
||||
[MessagePackObject(keyAsPropertyName: true)]
|
||||
public readonly record struct ZoneChatChannelInfoDto(
|
||||
|
||||
@@ -4,4 +4,4 @@ using MessagePack;
|
||||
namespace LightlessSync.API.Dto.Group;
|
||||
|
||||
[MessagePackObject(keyAsPropertyName: true)]
|
||||
public record GroupPruneSettingsDto(GroupData Group, bool AutoPruneEnabled, int AutoPruneDays) : GroupDto(Group);
|
||||
public record GroupPruneSettingsDto(GroupData Group, bool AutoPruneEnabled, int AutoPruneDays);
|
||||
@@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
@@ -10,7 +10,7 @@ namespace LightlessSync.API.SignalR;
|
||||
|
||||
public interface ILightlessHub
|
||||
{
|
||||
const int ApiVersion = 34;
|
||||
const int ApiVersion = 35;
|
||||
const string Path = "/lightless";
|
||||
|
||||
Task<bool> CheckClientHealth();
|
||||
@@ -114,5 +114,5 @@ public interface ILightlessHub
|
||||
Task UpdateChatPresence(ChatPresenceUpdateDto presence);
|
||||
Task SendChatMessage(ChatSendRequestDto request);
|
||||
Task ReportChatMessage(ChatReportSubmitDto request);
|
||||
Task<ChatParticipantResolveResultDto?> ResolveChatParticipant(ChatParticipantResolveRequestDto request);
|
||||
Task SetChatParticipantMute(ChatParticipantMuteRequestDto request);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user