mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-02 14:29:11 +02:00
feat(podcast-form): add new_feed_url field to set an url when changing domain or host
This commit is contained in:
parent
634961bcaa
commit
e7eec48e7b
5 changed files with 16 additions and 0 deletions
|
|
@ -328,6 +328,9 @@ class PodcastController extends BaseController
|
|||
'payment_pointer'
|
||||
) === '' ? null : $this->request->getPost('payment_pointer');
|
||||
$this->podcast->custom_rss_string = $this->request->getPost('custom_rss');
|
||||
$this->podcast->new_feed_url = $this->request->getPost('new_feed_url') === '' ? null : $this->request->getPost(
|
||||
'new_feed_url'
|
||||
);
|
||||
$this->podcast->partner_id = $partnerId;
|
||||
$this->podcast->partner_link_url = $partnerLinkUrl;
|
||||
$this->podcast->partner_image_url = $partnerImageUrl;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue