3 final class PhabricatorFeedConfigOptions
4 extends PhabricatorApplicationConfigOptions
{
6 public function getName() {
10 public function getDescription() {
11 return pht('Feed options.');
14 public function getIcon() {
15 return 'fa-newspaper-o';
18 public function getGroup() {
22 public function getOptions() {
23 $hooks_help = $this->deformat(pht(<<<EODOC
24 IMPORTANT: Feed hooks are deprecated and have been replaced by Webhooks.
26 You can configure Webhooks in Herald. This configuration option will be removed
27 in a future version of the software.
29 (This legacy option may be configured with a list of URIs; feed stories will
35 $this->newOption('feed.http-hooks', 'list<string>', array())
37 ->setSummary(pht('Deprecated.'))
38 ->setDescription($hooks_help),