mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-03 06:18:28 +01:00
Merge pull request #4633 from crobibero/guid-params
Use Guid as API parameter type where possible
This commit is contained in:
@@ -24,7 +24,7 @@ namespace MediaBrowser.Controller.Channels
|
||||
/// </summary>
|
||||
/// <param name="id">The identifier.</param>
|
||||
/// <returns>ChannelFeatures.</returns>
|
||||
ChannelFeatures GetChannelFeatures(string id);
|
||||
ChannelFeatures GetChannelFeatures(Guid? id);
|
||||
|
||||
/// <summary>
|
||||
/// Gets all channel features.
|
||||
|
||||
@@ -574,5 +574,7 @@ namespace MediaBrowser.Controller.Library
|
||||
void RunMetadataSavers(IReadOnlyList<BaseItem> items, ItemUpdateType updateReason);
|
||||
|
||||
BaseItem GetParentItem(string parentId, Guid? userId);
|
||||
|
||||
BaseItem GetParentItem(Guid? parentId, Guid? userId);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user