Fixed Marks all and added total downloads to entries.show

This commit is contained in:
2026-06-30 19:07:57 +02:00
parent 0ecb4610eb
commit f492a4d02f
2 changed files with 4 additions and 1 deletions

View File

@@ -82,7 +82,7 @@ class XenforoApiService {
public function markAllNotificationsRead(int $userId): void
{
Cache::forget("xf_alerts_{$userId}");
$this->post("alerts/mark-all", $userId );
$this->post("alerts/mark-all", $userId, ['read' => true, 'viewed' => true] );
}
public function getConversations(int $userId): mixed