added a help system, replaced the words "tenant" and "Pwa" with better alternatives. corrected and implemented cron jobs. prepared going live on a coolify-powered system.
This commit is contained in:
@@ -19,11 +19,12 @@ class PhotoFactory extends Factory
|
||||
'emotion_id' => Emotion::factory(),
|
||||
'task_id' => null,
|
||||
'guest_name' => $this->faker->name(),
|
||||
'file_path' => 'photos/' . Str::uuid() . '.jpg',
|
||||
'thumbnail_path' => 'photos/thumbnails/' . Str::uuid() . '.jpg',
|
||||
'file_path' => 'photos/'.Str::uuid().'.jpg',
|
||||
'thumbnail_path' => 'photos/thumbnails/'.Str::uuid().'.jpg',
|
||||
'likes_count' => $this->faker->numberBetween(0, 25),
|
||||
'is_featured' => false,
|
||||
'metadata' => ['factory' => true],
|
||||
'ingest_source' => \App\Models\Photo::SOURCE_GUEST_PWA,
|
||||
];
|
||||
}
|
||||
|
||||
@@ -45,4 +46,3 @@ class PhotoFactory extends Factory
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user