Merge pull request #4633 from crobibero/guid-params

Use Guid as API parameter type where possible
This commit is contained in:
Claus Vium
2020-12-03 07:51:02 +01:00
committed by GitHub
23 changed files with 92 additions and 112 deletions

View File

@@ -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.

View File

@@ -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);
}
}