5 Commits

Author SHA1 Message Date
418e647ef8 Change to Group-Dto-Changes
Reviewed-on: #9
2025-10-16 22:29:53 +02:00
7221cd81e4 Merge branch 'main' into group-dto-changes 2025-10-16 22:28:11 +02:00
f6b0b999cf lightfinder-profiles
Reviewed-on: #8
2025-10-16 17:27:09 +02:00
azyges
fbbd311f18 lightfinder profiles 2025-10-16 23:51:40 +09:00
CakeAndBanana
75469f6d5c Changed GroupProfileDTO to include NSFW and Disabled profiles 2025-10-15 23:18:59 +02:00
4 changed files with 30 additions and 29 deletions

View File

@@ -2,5 +2,5 @@
namespace LightlessSync.API.Dto.Group
{
public record GroupProfileDto(GroupData Group, string? Description, string? Tags, string? PictureBase64) : GroupDto(Group);
public record GroupProfileDto(GroupData Group, string? Description, string? Tags, string? PictureBase64, bool? IsNsfw, bool? IsDisabled) : GroupDto(Group);
}

View File

@@ -82,6 +82,7 @@ public interface ILightlessHub
Task<List<OnlineUserIdentDto>> UserGetOnlinePairs(CensusDataDto? censusDataDto);
Task<List<UserFullPairDto>> UserGetPairedClients();
Task<UserProfileDto> UserGetProfile(UserDto dto);
Task<UserProfileDto?> UserGetLightfinderProfile(string hashedCid);
Task UserPushData(UserCharaDataMessageDto dto);
Task UserUpdateVanityColors(UserVanityColorsDto dto);
Task UserRemovePair(UserDto userDto);