mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
22 lines
560 B
PHP
22 lines
560 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Limits
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| These values represent caps on playlists to prevent spam. By default,
|
|
| an individual playlist is permitted 1000 tracks, and a user
|
|
| is permitted 1000 playlists.
|
|
|
|
|
*/
|
|
|
|
'playlist_max_tracks' => (int) env('PLAYLIST_MAX_TRACKS', 1000),
|
|
|
|
'user_max_playlists' => (int) env('USER_MAX_PLAYLISTS', 1000),
|
|
];
|