[DONT MERGE] give a spec to input files

This commit is contained in:
2018-01-16 13:35:54 +01:00
parent 26a1caf088
commit 8d09f50f22
12 changed files with 67 additions and 44 deletions

View File

@ -12,7 +12,7 @@ namespace Yavsc.ViewComponents
IViewComponentResult result = null;
await Task.Run(() =>
{
result = View(new UserDirectoryInfo(User.Identity.Name, dirname));
result = View(new UserDirectoryInfo(Startup.UserFilesDirName, User.Identity.Name, dirname));
});
return result;
}