remove email verification

This commit is contained in:
HolgerHatGarKeineNode
2023-02-21 19:43:33 +01:00
parent a9afd65704
commit ea196074cc

View File

@@ -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,