diff options
| author | Shadowghost <Ghost_of_Stone@web.de> | 2023-09-16 15:08:45 +0200 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2023-09-16 15:09:19 +0200 |
| commit | f7720e7c99e0e0f84f6492670dc1bcf83fa0f2fb (patch) | |
| tree | 9a62c6c1feba9a249db25129ba827b4a324b190e /MediaBrowser.Controller/Playlists | |
| parent | 61155adecd8a69bb476487f9fc81175b0c4185b7 (diff) | |
Extend collections cleanup task to include playlists too
Diffstat (limited to 'MediaBrowser.Controller/Playlists')
| -rw-r--r-- | MediaBrowser.Controller/Playlists/IPlaylistManager.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Playlists/IPlaylistManager.cs b/MediaBrowser.Controller/Playlists/IPlaylistManager.cs index d1a51c2cf..bb68a3b6d 100644 --- a/MediaBrowser.Controller/Playlists/IPlaylistManager.cs +++ b/MediaBrowser.Controller/Playlists/IPlaylistManager.cs @@ -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); |
