Skip to content

Commit ba2f54a

Browse files
authored
В панели администратора не показывать горячие роли в проектах, где приём заявок закрыт (#3300)
fixes #3289
1 parent 40746b5 commit ba2f54a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JoinRpg.Dal.Impl/Repositories/HotCharactersRepository.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public async Task<IReadOnlyCollection<CharacterWithProject>> GetHotCharactersFro
1212
{
1313
var query = Ctx.ProjectsSet
1414
.AsExpandable()
15-
.Where(ProjectPredicates.Active())
15+
.Where(ProjectPredicates.Status(ProjectLifecycleStatus.ActiveClaimsOpen))
1616
.SelectMany(c => c.Characters)
1717
.Where(CharacterPredicates.Hot())
1818
.Apply(pagination, c => c.CharacterId)

0 commit comments

Comments
 (0)