Compare commits
8 Commits
44fbe10458
...
0bc7abb274
| Author | SHA1 | Date | |
|---|---|---|---|
| 0bc7abb274 | |||
|
|
9ac91682e6 | ||
|
|
01688b27bc | ||
| 418e647ef8 | |||
| 7221cd81e4 | |||
| f6b0b999cf | |||
|
|
fbbd311f18 | ||
|
|
75469f6d5c |
@@ -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, int[]? Tags, string? PictureBase64, bool? IsNsfw, bool? IsDisabled) : GroupDto(Group);
|
||||
}
|
||||
|
||||
@@ -4,4 +4,4 @@ using MessagePack;
|
||||
namespace LightlessSync.API.Dto.User;
|
||||
|
||||
[MessagePackObject(keyAsPropertyName: true)]
|
||||
public record UserProfileDto(UserData User, bool Disabled, bool? IsNSFW, string? ProfilePictureBase64, string? Description) : UserDto(User);
|
||||
public record UserProfileDto(UserData User, bool Disabled, bool? IsNSFW, string? ProfilePictureBase64, string? Description, int[]? Tags) : UserDto(User);
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user