⚙️ Make community a required field in meetup create/edit forms

🛠️ Add “Keine” placeholder option to community select
✏️ Translate community values (“bitcoin”, “einundzwanzig”) on landing page
🌍 Update German locale strings for community names
This commit is contained in:
HolgerHatGarKeineNode
2025-12-09 23:47:58 +01:00
parent 52c05e6d47
commit 538ae5808a
4 changed files with 13 additions and 4 deletions

View File

@@ -79,7 +79,7 @@ class extends Component {
'nostr' => ['nullable', 'string', 'max:255'],
'simplex' => ['nullable', 'string',],
'signal' => ['nullable', 'string', 'max:510'],
'community' => ['nullable', 'string', 'max:255'],
'community' => ['required', 'string', 'max:255'],
'visible_on_map' => ['boolean'],
]);