createdBy fields added

This commit is contained in:
Benjamin Takats
2022-12-15 11:08:03 +01:00
parent 52b2f93c17
commit 362ad81a2b
43 changed files with 381 additions and 22 deletions

View File

@@ -39,6 +39,7 @@ class ReadAndSyncEinundzwanzigPodcastFeed extends Command
'link' => $podcast->feed->link,
'language_code' => $podcast->feed->language,
'data' => $podcast->feed,
'created_by' => 1,
]);
$episodes = $client->episodes->byFeedUrl('https://einundzwanzig.space/feed.xml')
->json();
@@ -47,6 +48,7 @@ class ReadAndSyncEinundzwanzigPodcastFeed extends Command
->updateOrCreate(['guid' => $item->guid], [
'podcast_id' => $einundzwanzigPodcast->id,
'data' => $item,
'created_by' => 1,
]);
}

View File

@@ -49,6 +49,7 @@ class SyncOpenBooks extends Command
'deactreason' => $case['deactreason'],
'entrytype' => $case['entrytype'],
'homepage' => $case['homepage'],
'created_by' => 1,
]
);
}