diff --git a/app/Track.php b/app/Track.php index 352d54a5..0a25d422 100644 --- a/app/Track.php +++ b/app/Track.php @@ -93,9 +93,21 @@ class Track extends Model ], ]; + /** + * `TrackFiles` in these formats, with the exception of any master files, will + * be generated upon user request and kept around temporarily. + * + * After updating this array, run `php artisan rebuild:track-cache` to bring + * the track store into a consistent state. + * + * The strings in this array must match keys in the `Track::$Formats` array. + * + * @var array + */ public static $CacheableFormats = [ 'OGG Vorbis', 'ALAC', + 'AAC' ]; public static function summary()