diff options
| author | Cody Robibero <cody@robibe.ro> | 2023-09-22 06:55:11 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-22 06:55:11 -0600 |
| commit | 3a2799e61b3aa1fcda0d06531d455944e78c581c (patch) | |
| tree | b4f2a5eb6565f0f39ed18a867dd906ec38346b3f /MediaBrowser.Controller | |
| parent | 5ba855098de51d586e3c7b4db3056b23576b6af0 (diff) | |
| parent | 151d678b0ea344ec589f7ce478911b8e079e4f84 (diff) | |
Merge pull request #10234 from Shadowghost/cleanup-playlists-task
Diffstat (limited to 'MediaBrowser.Controller')
| -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); |
