mirror of
https://github.com/bitwarden/android.git
synced 2024-12-26 02:48:29 +03:00
disable events funcionality for now
This commit is contained in:
parent
40a3541e8e
commit
11cdf52ec8
1 changed files with 4 additions and 0 deletions
|
@ -31,6 +31,8 @@ namespace Bit.Core.Services
|
||||||
|
|
||||||
public async Task CollectAsync(EventType eventType, string cipherId = null, bool uploadImmediately = false)
|
public async Task CollectAsync(EventType eventType, string cipherId = null, bool uploadImmediately = false)
|
||||||
{
|
{
|
||||||
|
return;
|
||||||
|
// TODO
|
||||||
var authed = await _userService.IsAuthenticatedAsync();
|
var authed = await _userService.IsAuthenticatedAsync();
|
||||||
if(!authed)
|
if(!authed)
|
||||||
{
|
{
|
||||||
|
@ -74,6 +76,8 @@ namespace Bit.Core.Services
|
||||||
|
|
||||||
public async Task UploadEventsAsync()
|
public async Task UploadEventsAsync()
|
||||||
{
|
{
|
||||||
|
return;
|
||||||
|
// TODO
|
||||||
var authed = await _userService.IsAuthenticatedAsync();
|
var authed = await _userService.IsAuthenticatedAsync();
|
||||||
if(!authed)
|
if(!authed)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue