Extend collections cleanup task to include playlists too

This commit is contained in:
Shadowghost
2023-09-16 15:08:45 +02:00
parent 61155adecd
commit f7720e7c99
4 changed files with 158 additions and 119 deletions

View File

@@ -44,6 +44,12 @@ namespace MediaBrowser.Controller.Playlists
/// <summary>
/// Gets the playlists folder.
/// </summary>
/// <returns>Folder.</returns>
Folder GetPlaylistsFolder();
/// <summary>
/// Gets the playlists folder for a user.
/// </summary>
/// <param name="userId">The user identifier.</param>
/// <returns>Folder.</returns>
Folder GetPlaylistsFolder(Guid userId);