die tenant admin oauth authentifizierung wurde implementiert und funktioniert jetzt. Zudem wurde das marketing frontend dashboard implementiert.

This commit is contained in:
Codex Agent
2025-11-04 16:14:17 +01:00
parent 92e64c361a
commit fe380689fb
63 changed files with 4239 additions and 1142 deletions

View File

@@ -6,6 +6,7 @@ use App\Models\Emotion;
use App\Models\EventType;
use App\Models\Task;
use App\Models\TaskCollection;
use App\Models\Tenant;
use Illuminate\Database\Seeder;
use Illuminate\Support\Str;
@@ -13,18 +14,13 @@ class TasksSeeder extends Seeder
{
public function run(): void
{
// Create or get demo tenant
$demoTenant = \App\Models\Tenant::updateOrCreate(
['slug' => 'demo'],
[
'name' => 'Demo Tenant',
'domain' => null,
'is_active' => true,
'is_suspended' => false,
'settings' => json_encode([]),
'settings_updated_at' => null,
]
);
$demoTenant = Tenant::where('slug', 'demo-tenant')->first();
if (! $demoTenant) {
$this->command?->warn('Demo tenant not found, skipping TasksSeeder');
return;
}
$seed = [
'Liebe' => [