]> _ Git - fluidbook-toolbox.git/commitdiff
wip #7868
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Mon, 9 Feb 2026 11:48:41 +0000 (12:48 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Mon, 9 Feb 2026 11:48:41 +0000 (12:48 +0100)
app/Jobs/AuditLink.php

index ba850574d13d98fd96284382edb338427cb79926..572b045739dbd36664a55f4a689eb23359314374 100644 (file)
@@ -4,6 +4,7 @@ namespace App\Jobs;
 
 
 use App\Models\FluidbookAuditLink;
+use App\Models\ShortLink;
 use Cubist\Util\ArrayUtil;
 use Cubist\Util\Files\Files;
 use Cubist\Util\WebVideo;
@@ -45,6 +46,7 @@ class AuditLink extends Base
 
         $this->extracted($urls);
         Log::info('Job exécuté avec succès');
+        ShortLink::touchChangeFile();
     }
 
     public function compareLinks()
@@ -83,5 +85,6 @@ class AuditLink extends Base
                 sleep(self::$minTimeBetweenRequests - $diff);
             }
         }
+
     }
 }