Merge pull request 'Added banner info' (#11) from banner-profile into main
Reviewed-on: #11
This commit was merged in pull request #11.
This commit is contained in:
@@ -2,5 +2,5 @@
|
|||||||
|
|
||||||
namespace LightlessSync.API.Dto.Group
|
namespace LightlessSync.API.Dto.Group
|
||||||
{
|
{
|
||||||
public record GroupProfileDto(GroupData Group, string? Description, int[]? Tags, string? PictureBase64, bool? IsNsfw, bool? IsDisabled) : GroupDto(Group);
|
public record GroupProfileDto(GroupData Group, string? Description, int[]? Tags, string? PictureBase64, string? BannerBase64, bool? IsNsfw, bool? IsDisabled) : GroupDto(Group);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,4 +4,4 @@ using MessagePack;
|
|||||||
namespace LightlessSync.API.Dto.User;
|
namespace LightlessSync.API.Dto.User;
|
||||||
|
|
||||||
[MessagePackObject(keyAsPropertyName: true)]
|
[MessagePackObject(keyAsPropertyName: true)]
|
||||||
public record UserProfileDto(UserData User, bool Disabled, bool? IsNSFW, string? ProfilePictureBase64, string? Description, int[]? Tags) : UserDto(User);
|
public record UserProfileDto(UserData User, bool Disabled, bool? IsNSFW, string? ProfilePictureBase64, string? BannerPictureBase64, string? Description, int[]? Tags) : UserDto(User);
|
||||||
Reference in New Issue
Block a user