Cleaned up ReaderController to match the new method of loading images in FE. Sends the full files rather than base64 encoded string.

This commit is contained in:
Joseph Milazzo 2021-03-09 15:50:17 -06:00
parent c6e1fec9f2
commit 2a8931406d
5 changed files with 38 additions and 52 deletions

View file

@ -13,8 +13,6 @@ namespace API.Interfaces.Services
/// <param name="rootPath">Absolute path of directory to scan.</param>
/// <returns>List of folder names</returns>
IEnumerable<string> ListDirectory(string rootPath);
Task<ImageDto> ReadImageAsync(string imagePath);
/// <summary>
/// Gets files in a directory. If searchPatternExpression is passed, will match the regex against for filtering.
/// </summary>