image processor added

This commit is contained in:
HolgerHatGarKeineNode
2023-02-15 11:25:31 +01:00
parent 5b1d0886dc
commit 2949ff5cb0
22 changed files with 278 additions and 177 deletions

View File

@@ -46,8 +46,9 @@ class ImportGithubMeetups extends Command
['name' => $meetup['name']],
[
'city_id' => $city->id,
'webpage' => $meetup['url'],
'webpage' => $meetup['url'],
'created_by' => 1,
'community' => 'einundzwanzig'
]);
}

View File

@@ -82,6 +82,9 @@ class ReadAndSyncPodcastFeeds extends Command
'created_at' => Carbon::parse($item->datePublished),
]);
}
if (app()->environment('local')) {
break;
}
}
return Command::SUCCESS;