update library setup

This commit is contained in:
Luke Pulverenti
2015-10-15 22:06:44 -04:00
parent b895a837ee
commit bd0ad4a5cd
3 changed files with 13 additions and 4 deletions

View File

@@ -47,6 +47,12 @@ namespace MediaBrowser.Api.Library
/// </summary>
/// <value><c>true</c> if [refresh library]; otherwise, <c>false</c>.</value>
public bool RefreshLibrary { get; set; }
/// <summary>
/// Gets or sets the path.
/// </summary>
/// <value>The path.</value>
public string Path { get; set; }
}
[Route("/Library/VirtualFolders", "DELETE")]
@@ -216,6 +222,11 @@ namespace MediaBrowser.Api.Library
}
}
if (!string.IsNullOrWhiteSpace(request.Path))
{
LibraryHelpers.AddMediaPath(_fileSystem, request.Name, request.Path, _appPaths);
}
}
finally
{