mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
- 🛠️ Replaced inline dashboard layout with Livewire component for better reusability and management.
- 🔒 Introduced Nostr-based login functionality with `nostr-tools` integration. - 🖼️ Added user profile photo handling (upload, delete, and URL retrieval) in the `User` model. - 💻 Updated views to use `flux:avatar` for consistent user avatars. - ✂️ Removed unused routes and adjusted dashboard routing logic. - 📦 Updated dependencies in `package.json` and `yarn.lock`.
This commit is contained in:
@@ -10,10 +10,6 @@ Volt::route('welcome', 'welcome')->name('welcome');
|
||||
Route::middleware([])
|
||||
->prefix('/{country:code}')
|
||||
->group(function () {
|
||||
Route::view('dashboard', 'dashboard')
|
||||
->middleware(['auth', 'verified'])
|
||||
->name('dashboard');
|
||||
|
||||
Volt::route('meetups', 'meetups.index')->name('meetups.index');
|
||||
Volt::route('map', 'meetups.map')->name('meetups.map');
|
||||
Volt::route('meetup/{meetup:slug}', 'meetups.landingpage')->name('meetups.landingpage');
|
||||
@@ -23,6 +19,7 @@ Route::middleware([])
|
||||
Route::middleware(['auth'])
|
||||
->prefix('/{country:code}')
|
||||
->group(function () {
|
||||
Volt::route('dashboard', 'dashboard')->name('dashboard');
|
||||
Volt::route('meetup-edit/{meetup}', 'meetups.edit')->name('meetups.edit');
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user