mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-02 01:48:23 +01:00
16 lines
294 B
PHP
16 lines
294 B
PHP
|
<?php
|
||
|
|
||
|
abstract class HeraldWebhookController extends HeraldController {
|
||
|
|
||
|
protected function buildApplicationCrumbs() {
|
||
|
$crumbs = parent::buildApplicationCrumbs();
|
||
|
|
||
|
$crumbs->addTextCrumb(
|
||
|
pht('Webhooks'),
|
||
|
$this->getApplicationURI('webhook/'));
|
||
|
|
||
|
return $crumbs;
|
||
|
}
|
||
|
|
||
|
}
|