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:
@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user