♻️ Simplified publisher subscription

This commit is contained in:
2026-01-12 00:52:48 +08:00
parent bd41568578
commit ed7d54c47a
7 changed files with 1850 additions and 49 deletions

View File

@@ -138,7 +138,6 @@ public class PublisherService(
// If not in cache, fetch from a database
var publishersId = await db.PublisherSubscriptions
.Where(p => p.AccountId == userId)
.Where(p => p.Status == PublisherSubscriptionStatus.Active)
.Select(p => p.PublisherId)
.ToListAsync();
publishers = await db.Publishers