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

@ -0,0 +1,23 @@
<?php
declare(strict_types=1);
namespace Modules\WebSub\Config;
use CodeIgniter\Config\BaseConfig;
class WebSub extends BaseConfig
{
/**
* --------------------------------------------------------------------------
* Hubs to ping
* --------------------------------------------------------------------------
* @var string[]
*/
public array $hubs = [
'https://pubsubhubbub.appspot.com/',
'https://pubsubhubbub.superfeedr.com/',
'https://websubhub.com/hub',
'https://switchboard.p3k.io/',
];
}