mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-13 23:56:47 +00:00
🚀 Add Nostr profile job, Hungarian translations, and Horizon integration
- Introduced `FetchNostrProfileJob` for retrieving and updating user Nostr profiles. - Added Hungarian translations (`auth.php`, `passwords.php`, `validation.php`, and others) for improved localization. - Integrated Laravel Horizon for enhanced queue management (`HorizonServiceProvider` added, `composer.json` updated). - Updated German and Spanish language files to fix duplicate keys. - Minor route addition for testing Nostr profile job dispatch.
This commit is contained in:
@@ -6,6 +6,10 @@ use Livewire\Volt\Volt;
|
||||
|
||||
Route::redirect('/', 'welcome');
|
||||
|
||||
Route::get('test', function () {
|
||||
\App\Jobs\FetchNostrProfileJob::dispatchSync(\App\Models\User::find(1426));
|
||||
});
|
||||
|
||||
Route::get('error/{code}', function ($code) {
|
||||
abort($code);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user