feat(social): local blocklist — hide blocked authors' offers, chats and incoming messages, with unblock management

This commit is contained in:
vjrj 2026-07-13 01:03:10 +02:00
parent cd9f09048d
commit b41dfd4248
13 changed files with 399 additions and 4 deletions

View file

@ -249,6 +249,7 @@ Future<void> configureDependencies() async {
profileCache: getIt<ProfileCache>(),
unread: getIt<UnreadService>(),
notifications: getIt<NotificationService>(),
settings: getIt<SocialSettings>(),
),
)
// Replicates the inventory across this identity's own devices over the
@ -342,6 +343,7 @@ Future<void> switchSocialAccount(int account) async {
profileCache: getIt<ProfileCache>(),
unread: getIt<UnreadService>(),
notifications: getIt<NotificationService>(),
settings: getIt<SocialSettings>(),
);
final sync = SyncService(
connection: connection,