*/ public array $routeFilters = [ 'analytics-full-data' => 'permission:podcast#.view', 'analytics-data' => 'permission:podcast#.view', 'analytics-filtered-data' => 'permission:podcast#.view', ]; /** * -------------------------------------------------------------------------- * Secret Salt * -------------------------------------------------------------------------- * * The secret salt is a string of random characters that is used when hashing data. * Each Castopod instance has its own secret salt so keys will never be the same. * * Example: * Z&|qECKBrwgaaD>~;U/tXG1U%tSe_oi5Tzy)h>}5NC2npSrjvM0w_Q>cs=0o=H]* */ public string $salt = ''; /** * get the full audio file url * * @param string|string[] $audioPath */ public function getAudioUrl(string | array $audioPath): string { helper('media'); return media_base_url($audioPath); } }