mirror of
https://github.com/bitwarden/mobile
synced 2026-01-07 19:13:19 +00:00
resolve some todos
This commit is contained in:
@@ -10,7 +10,6 @@ namespace Bit.Core.Models.Request
|
||||
Type = platformUtilsService.GetDevice();
|
||||
Name = platformUtilsService.GetDeviceString();
|
||||
Identifier = appId;
|
||||
PushToken = null; // TODO?
|
||||
}
|
||||
|
||||
public DeviceType? Type { get; set; }
|
||||
|
||||
@@ -29,8 +29,7 @@ namespace Bit.Core.Models.Request
|
||||
obj.Add("deviceType", ((int)Device.Type).ToString());
|
||||
obj.Add("deviceIdentifier", Device.Identifier);
|
||||
obj.Add("deviceName", Device.Name);
|
||||
// TODO
|
||||
// dict.Add("devicePushToken", null);
|
||||
obj.Add("devicePushToken", Device.PushToken);
|
||||
}
|
||||
if(!string.IsNullOrWhiteSpace(Token) && Provider != null)
|
||||
{
|
||||
|
||||
@@ -1,11 +1,5 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Bit.Core.Models.View
|
||||
namespace Bit.Core.Models.View
|
||||
{
|
||||
public abstract class View
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
{ }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user