Edited database to add posts on the app

This commit is contained in:
2026-04-21 10:03:28 +02:00
parent a12d2433d7
commit 331a48e478
29 changed files with 1200 additions and 427 deletions
@@ -37,14 +37,6 @@ public class GetAllUserProofsEndpoint(UsersRepository usersRepository, UserServi
})
);
if (user.UserGroups is not null)
proofs.AddRange(
user.UserGroups.Select(x => new GetUserProofDto
{
Proof = x.Proof
})
);
await Send.OkAsync(proofs, ct);
}
}