Checkpoint: Implémentation du résumé automatique généré par l'IA pour chaque article RSS (veille et AAP), marquage lu/non lu avec point bleu et fond teinté, bouton "Tout marquer comme lu", compteurs non lus dans la sidebar et dans les titres de page. Migration BDD : table article_reads + colonne iaResume dans veille_items et aap_items.

This commit is contained in:
Manus
2026-06-16 03:08:29 -04:00
parent c47c76215e
commit 67dfbb1a13
12 changed files with 1324 additions and 35 deletions

View File

@@ -0,0 +1,11 @@
CREATE TABLE `article_reads` (
`id` int AUTO_INCREMENT NOT NULL,
`userId` int NOT NULL,
`articleType` enum('veille','aap') NOT NULL,
`articleId` int NOT NULL,
`readAt` timestamp NOT NULL DEFAULT (now()),
CONSTRAINT `article_reads_id` PRIMARY KEY(`id`)
);
--> statement-breakpoint
ALTER TABLE `aap_items` ADD `iaResume` text;--> statement-breakpoint
ALTER TABLE `veille_items` ADD `iaResume` text;