mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-13 03:27:45 +02:00
feat(media): clean media api + create an entity per media type
This commit is contained in:
parent
b09acf6c65
commit
fafaa7e689
46 changed files with 482 additions and 610 deletions
16
app/Entities/Media/Transcript.php
Normal file
16
app/Entities/Media/Transcript.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* @copyright 2021 Podlibre
|
||||
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
||||
* @link https://castopod.org/
|
||||
*/
|
||||
|
||||
namespace App\Entities\Media;
|
||||
|
||||
class Transcript extends BaseMedia
|
||||
{
|
||||
protected string $type = 'transcript';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue