]> _ Git - fluidbook-toolbox.git/commitdiff
wait #6527 @0.25
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Wed, 29 Nov 2023 14:51:25 +0000 (15:51 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Wed, 29 Nov 2023 14:51:25 +0000 (15:51 +0100)
app/Console/Commands/FluidbookCollection.php
app/Console/Commands/FluidbookPackage.php
app/Console/Commands/WorkshopMigration.php

index ce8aa4d0aa5a16b193afd83eb3c63b6aa705b06b..c4713f1aef095310924ca1ba45e558986f4942a1 100644 (file)
@@ -20,7 +20,7 @@ class FluidbookCollection extends CubistCommand
     {
         PHP::neverStop(true);
         $collection = \App\Models\FluidbookCollection::find($this->argument('id'));
-        $job = new FluidbookCollectionDownload($collection, $this->argument('action'), User::withoutGlobalScope('ownerclause')->findOrFail(5));
+        $job = new FluidbookCollectionDownload($collection, $this->argument('action'), User::withoutGlobalScope('ownerclause')->findOrFail(5963));
         $job->handle();
     }
 }
index b8281c1b58766299c7f1e44263af1def11af7099..fed32adaa0b902cd42b7a2397847a2a29ce09fcd 100644 (file)
@@ -17,7 +17,7 @@ class FluidbookPackage extends CubistCommand
      */
     public function handle()
     {
-        $download = new Download(FluidbookPublication::find($this->argument('id')), $this->argument('type'), $this->argument('action'), User::withoutGlobalScope('ownerclause')->findOrFail(5));
+        $download = new Download(FluidbookPublication::find($this->argument('id')), $this->argument('type'), $this->argument('action'), User::withoutGlobalScope('ownerclause')->findOrFail(5963));
         $download->handle();
     }
 }
index 3bf137cad85f1407409f9788ef165f24377fa705..118018c255cd7ef45bb3c9809454470d9fa945bc 100644 (file)
@@ -27,7 +27,7 @@ class WorkshopMigration extends CubistCommand
     protected $_wsRanks = [];
     const OLD_DB = 'extranet_clean';
     protected $_oldRoot = '/home/extranet/www/fluidbook/';
-    protected static $_admin = 5;
+    protected static $_admin = 5963;
 
     /** @var Lock */
     protected Lock $_lock;