1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-06 18:42:49 -05:00

Added "since" revision date parameter to folder and site "get all" APIs.

This commit is contained in:
Kyle Spearrin
2016-05-04 22:39:23 -04:00
parent 8d57b21f97
commit 9c61cfb5c0
9 changed files with 80 additions and 5 deletions

View File

@ -1,4 +1,5 @@
using System.Collections.Generic;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Bit.Core.Domains;
@ -8,5 +9,6 @@ namespace Bit.Core.Repositories
{
Task<Folder> GetByIdAsync(string id, string userId);
Task<ICollection<Folder>> GetManyByUserIdAsync(string userId);
Task<ICollection<Folder>> GetManyByRevisionDateAsync(string userId, DateTime sinceRevisionDate);
}
}