2 Commits

Author SHA1 Message Date
7221cd81e4 Merge branch 'main' into group-dto-changes 2025-10-16 22:28:11 +02:00
CakeAndBanana
75469f6d5c Changed GroupProfileDTO to include NSFW and Disabled profiles 2025-10-15 23:18:59 +02:00

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);
}