diff --git a/app/Console/Commands/EnableLivestreams.php b/app/Console/Commands/EnableLivestreams.php index c3a335c6..ce8478a2 100644 --- a/app/Console/Commands/EnableLivestreams.php +++ b/app/Console/Commands/EnableLivestreams.php @@ -47,7 +47,7 @@ public function handle(OpencastService $opencastService, WowzaService $wowzaServ // $startDate = (Carbon::now()->isDST()) ? Carbon::now()->subMinutes(120) : Carbon::now()->subMinutes(120); // $endDate = (Carbon::now()->isDST()) ? Carbon::now()->subMinutes(110) : Carbon::now()->subMinutes(110); $startDate = Carbon::now()->subMinutes(120); - $endDate = Carbon::now()->subMinutes(119); + $endDate = Carbon::now()->subMinutes(111); // $endDate = (Carbon::now()->isDST()) ? Carbon::now()->addMinutes(110) : Carbon::now()->subMinutes(50); Log::info('Searching for active Opencast recording events without active livestream room reservation'); $this->info('Searching for active Opencast recording events'); diff --git a/resources/views/vendor/notifications/email.blade.php b/resources/views/vendor/notifications/email.blade.php deleted file mode 100644 index 978bfa08..00000000 --- a/resources/views/vendor/notifications/email.blade.php +++ /dev/null @@ -1,58 +0,0 @@ - - {{-- Greeting --}} - @if (! empty($greeting)) - # {{ $greeting }} - @else - @if ($level === 'error') - # @lang('Whoops!') - @else - # @lang('Hello!') - @endif - @endif - - {{-- Intro Lines --}} - @foreach ($introLines as $line) - {{ $line }} - - @endforeach - - {{-- Action Button --}} - @isset($actionText) - $level, - default => 'primary', - }; - ?> - - {{ $actionText }} - - @endisset - - {{-- Outro Lines --}} - @foreach ($outroLines as $line) - {{ $line }} - - @endforeach - - {{-- Salutation --}} - @if (! empty($salutation)) - {{ $salutation }} - @else - @lang('Regards'),
- {{ config('app.name') }} - @endif - - {{-- Subcopy --}} - @isset($actionText) - - @lang( - "If you're having trouble clicking the \":actionText\" button, copy and paste the URL below\n". - 'into your web browser:', - [ - 'actionText' => $actionText, - ] - ) [{{ $displayableActionUrl }}]({{ $actionUrl }}) - - @endisset -