]> _ Git - fluidbook-toolbox.git/commitdiff
wip #5804 @0.25
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 14 Mar 2023 18:37:27 +0000 (19:37 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Tue, 14 Mar 2023 18:37:27 +0000 (19:37 +0100)
app/Console/Kernel.php
resources/views/columns/owner.blade.php

index 9697ac3a3944f6c3f729a2ce7119ec6561adb195..21ce254bc217fe67104687b80f9818e5c965c43d 100644 (file)
@@ -36,6 +36,7 @@ class Kernel extends \Cubist\Backpack\Console\Kernel
 
         $schedule->command('job:dispatch ProcessTotals')->everyTwoHours();
         $schedule->command('fluidbook:player:updatesources')->everyTwoHours();
+        $schedule->command('job:dispatchNow \\\\Cubedesigners\\\\UserDatabase\\\\Jobs\\\\ApplyPermissionsToUsers');
 
         $schedule->command('fluidbook:farm:ping')->everyMinute();
         $schedule->command('cubist:magic:precache')->everyFiveMinutes();
index 47cbc46d56f57c2cdca3f1ddd189eea276da827f..c64660cad6d84f4be705917877119f95be55bf7f 100644 (file)
@@ -1,6 +1,6 @@
 @php
     $values = data_get($entry, $column['name']);
-    $v=$column['options'][$values];
+    $v=$column['options'][$values]??null;
 
 @endphp