mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
23 lines
443 B
PHP
23 lines
443 B
PHP
![]() |
<?php
|
||
|
|
||
|
/**
|
||
|
* @copyright 2020 Podlibre
|
||
|
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
||
|
* @link https://castopod.org/
|
||
|
*/
|
||
|
|
||
|
namespace App\Controllers;
|
||
|
|
||
|
class Actor extends \ActivityPub\Controllers\ActorController
|
||
|
{
|
||
|
public function follow()
|
||
|
{
|
||
|
helper(['form', 'components', 'svg']);
|
||
|
$data = [
|
||
|
'actor' => $this->actor,
|
||
|
];
|
||
|
|
||
|
return view('podcast/follow', $data);
|
||
|
}
|
||
|
}
|