feat: add WebSub module for pushing feed updates to open hubs

This commit is contained in:
Yassine Doghri 2022-03-15 16:47:35 +00:00
commit 10d3f73786
17 changed files with 244 additions and 3 deletions

View file

@ -340,6 +340,9 @@ class PodcastController extends BaseController
$this->podcast->is_locked = $this->request->getPost('lock') === 'yes';
$this->podcast->updated_by = (int) user_id();
// republish on websub hubs upon edit
$this->podcast->is_published_on_hubs = false;
$db = db_connect();
$db->transStart();