{
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();
}
}
*/
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();
}
}
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;