mirror of
https://github.com/bitwarden/server.git
synced 2025-07-04 01:22:50 -05:00
refactored data storage to use cipher table. added history table and insert triggers.
This commit is contained in:
@ -1,11 +1,10 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Bit.Core.Domains;
|
||||
|
||||
namespace Bit.Core.Repositories
|
||||
{
|
||||
public interface IUserRepository : IRepository<User>
|
||||
public interface IUserRepository : IRepository<User, Guid>
|
||||
{
|
||||
Task<User> GetByEmailAsync(string email);
|
||||
}
|
||||
|
Reference in New Issue
Block a user