mirror of
https://github.com/bitwarden/mobile
synced 2026-02-25 00:52:49 +00:00
set up user settings data table and access repository
This commit is contained in:
@@ -39,6 +39,11 @@ namespace Bit.App.Repositories
|
||||
Connection.Update(obj);
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
public virtual Task UpsertAsync(T obj)
|
||||
{
|
||||
Connection.InsertOrReplace(obj);
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
|
||||
public virtual async Task DeleteAsync(T obj)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user