Files
social-media/backend/src/Socialize.Api/Modules/ReleaseCommunications/Services/ReleaseUpdateVisibility.cs
Jonathan Bourdon dcfdce1ec6
Some checks failed
deploy-socialize / image (push) Successful in 1m9s
deploy-socialize / deploy (push) Has been cancelled
Simplify release notes workflow
2026-05-08 00:37:14 -04:00

12 lines
367 B
C#

using Socialize.Api.Modules.ReleaseCommunications.Data;
namespace Socialize.Api.Modules.ReleaseCommunications.Services;
internal static class ReleaseUpdateVisibility
{
public static IQueryable<ReleaseUpdate> VisibleToUsers(this IQueryable<ReleaseUpdate> query)
{
return query.Where(update => update.Status == ReleaseUpdateStatus.Published);
}
}