1
0

Filter out hidden sessions in SessionRepository.

This commit is contained in:
Márcio Eric 2026-02-09 22:30:58 -03:00
parent c7a6d5f938
commit 5fd6188db6

View File

@ -43,6 +43,7 @@ public sealed class SessionRepository : ISessionRepository
const string sql = """
select id, name
from session
where hide = false
order by id;
""";