Implement creator studio and upload updates

This commit is contained in:
2026-04-04 10:12:02 +02:00
parent 1da7d3bf88
commit 0b216b7ecd
15107 changed files with 31206 additions and 626514 deletions

View File

@@ -0,0 +1,43 @@
<?php
namespace App\Models;
use App\Enums\ModerationDomainStatus;
use Illuminate\Database\Eloquent\Model;
class ContentModerationDomain extends Model
{
protected $table = 'content_moderation_domains';
protected $fillable = [
'domain',
'status',
'times_seen',
'times_flagged',
'times_confirmed_spam',
'linked_users_count',
'linked_findings_count',
'linked_clusters_count',
'first_seen_at',
'last_seen_at',
'top_keywords_json',
'top_content_types_json',
'false_positive_count',
'notes',
];
protected $casts = [
'status' => ModerationDomainStatus::class,
'times_seen' => 'integer',
'times_flagged' => 'integer',
'times_confirmed_spam' => 'integer',
'linked_users_count' => 'integer',
'linked_findings_count' => 'integer',
'linked_clusters_count' => 'integer',
'first_seen_at' => 'datetime',
'last_seen_at' => 'datetime',
'top_keywords_json' => 'array',
'top_content_types_json' => 'array',
'false_positive_count' => 'integer',
];
}