remove waste

This commit is contained in:
Anton Suhorukov 2022-04-11 10:58:18 +03:00
parent 6dfb0d86d5
commit 387119f6f2

View File

@ -393,8 +393,7 @@ namespace ASC.Api.Documents
[Read("{folderId:int}", order: int.MaxValue - 1, DisableFormat = true)]
public Task<FolderContentWrapper<int>> GetFolderAsync(int folderId, Guid userIdOrGroupId, FilterType filterType, bool searchInContent, bool withsubfolders)
{
var q = FilesControllerHelperInt.GetFolderAsync(folderId, userIdOrGroupId, filterType, searchInContent, withsubfolders);
return q;
return FilesControllerHelperInt.GetFolderAsync(folderId, userIdOrGroupId, filterType, searchInContent, withsubfolders);
}
[Read("{folderId}/subfolders")]