- 🛠️ 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:
HolgerHatGarKeineNode
2025-11-21 12:05:31 +01:00
parent 01d35d8664
commit ddfa915acc
13 changed files with 393 additions and 67 deletions

View File

@@ -146,7 +146,9 @@ new class extends Component {
</flux:table.cell>
<flux:table.cell>
<flux:button :href="route_with_country('meetups.edit', ['meetup' => $meetup])" size="xs"
<flux:button
:disabled="!$meetup->belongsToMe"
:href="$meetup->belongsToMe ? route_with_country('meetups.edit', ['meetup' => $meetup]) : null" size="xs"
variant="filled" icon="pencil">
{{ __('Bearbeiten') }}
</flux:button>