1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-10 12:33:28 +00:00

repurpose vaultlistpage to also serve favorites page

This commit is contained in:
Kyle Spearrin
2016-06-14 23:23:05 -04:00
parent 3c14eaf3f8
commit a238523551
6 changed files with 26 additions and 6 deletions

View File

@@ -8,5 +8,6 @@ namespace Bit.App.Abstractions
public interface ISiteRepository : IRepository<SiteData, string>
{
Task<IEnumerable<SiteData>> GetAllByUserIdAsync(string userId);
Task<IEnumerable<SiteData>> GetAllByUserIdAsync(string userId, bool favorite);
}
}