feat: add podcast links page including social, podcasting and funding links

This commit is contained in:
Yassine Doghri 2023-07-26 17:19:40 +00:00
commit 8ae292933a
10 changed files with 145 additions and 3 deletions

View file

@ -318,4 +318,12 @@ class PodcastController extends BaseController
->setContentType('application/activity+json')
->setBody($collection->toJSON());
}
public function links(): string
{
return view('podcast/links', [
'metatags' => get_podcast_metatags($this->podcast, 'links'),
'podcast' => $this->podcast,
]);
}
}