mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
remove email verification
This commit is contained in:
@@ -69,20 +69,21 @@ Route::middleware([])
|
|||||||
->map(fn($meetup) => [
|
->map(fn($meetup) => [
|
||||||
'id' => $meetup->slug,
|
'id' => $meetup->slug,
|
||||||
'tags' => [
|
'tags' => [
|
||||||
'type' => 'community',
|
'type' => 'community',
|
||||||
'name' => $meetup->name,
|
'name' => $meetup->name,
|
||||||
'continent' => 'europe',
|
'continent' => 'europe',
|
||||||
'icon:square' => $meetup->logoSquare,
|
'icon:square' => $meetup->logoSquare,
|
||||||
//'contact:email' => null,
|
//'contact:email' => null,
|
||||||
'contact:twitter' => 'https://twitter.com/'.$meetup->twitter_username,
|
'contact:twitter' => 'https://twitter.com/'.$meetup->twitter_username,
|
||||||
'contact:website' => $meetup->telegram_link ?? $meetup->webpage ?? $meetup->matrix_group,
|
'contact:website' => $meetup->webpage,
|
||||||
'contact:nostr' => $meetup->nostr,
|
'contact:telegram' => $meetup->telegram_link,
|
||||||
|
'contact:nostr' => $meetup->nostr,
|
||||||
//'tips:lightning_address' => null,
|
//'tips:lightning_address' => null,
|
||||||
'organization' => 'einundzwanzig',
|
'organization' => 'einundzwanzig',
|
||||||
'language' => $meetup->city->country->language_codes[0] ?? 'de',
|
'language' => $meetup->city->country->language_codes[0] ?? 'de',
|
||||||
'geo_json' => $meetup->city->simplified_geojson,
|
'geo_json' => $meetup->city->simplified_geojson,
|
||||||
'population' => $meetup->city->population,
|
'population' => $meetup->city->population,
|
||||||
'population:date' => $meetup->city->population_date,
|
'population:date' => $meetup->city->population_date,
|
||||||
],
|
],
|
||||||
])
|
])
|
||||||
->toArray(), 200,
|
->toArray(), 200,
|
||||||
|
|||||||
Reference in New Issue
Block a user