## Summary - rebuild the public Tenantial homepage around an evidence-first Microsoft tenant governance narrative - replace the old hero visual with a new static dashboard preview and add dedicated Trust Bar and Feature Pillars sections - update the shared public shell, navigation, footer, dark design tokens, assets, and homepage content to match the new brand direction - align website smoke coverage and Spec 400 artifacts with the rebuilt homepage ## Testing - not run in this pass - updated website smoke specs under apps/website/tests/smoke ## Note - `website-dev` was pushed to `origin` so the requested PR base exists remotely - the remote `website-dev` branch is an ancestor of `origin/dev`, so this PR may also show upstream `dev` history relative to that base Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #387
47 lines
1.5 KiB
PHP
47 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Support\OperationCatalog;
|
|
use App\Support\OperationRunType;
|
|
use App\Support\Concerns\DerivesWorkspaceIdFromTenant;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class BackupSchedule extends Model
|
|
{
|
|
use DerivesWorkspaceIdFromTenant;
|
|
use HasFactory;
|
|
use SoftDeletes;
|
|
|
|
protected $guarded = [];
|
|
|
|
protected $casts = [
|
|
'is_enabled' => 'boolean',
|
|
'include_foundations' => 'boolean',
|
|
'days_of_week' => 'array',
|
|
'policy_types' => 'array',
|
|
'last_run_at' => 'datetime',
|
|
'next_run_at' => 'datetime',
|
|
];
|
|
|
|
public function tenant(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Tenant::class);
|
|
}
|
|
|
|
public function operationRuns(): HasMany
|
|
{
|
|
return $this->hasMany(OperationRun::class, 'tenant_id', 'tenant_id')
|
|
->whereIn('type', array_values(array_unique(array_merge(
|
|
OperationCatalog::rawValuesForCanonical(OperationRunType::BackupScheduleExecute->value),
|
|
OperationCatalog::rawValuesForCanonical(OperationRunType::BackupScheduleRetention->value),
|
|
OperationCatalog::rawValuesForCanonical(OperationRunType::BackupSchedulePurge->value),
|
|
))))
|
|
->where('context->backup_schedule_id', (int) $this->getKey());
|
|
}
|
|
}
|