1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-22 19:23:58 +00:00

clear push token on unregister

This commit is contained in:
Kyle Spearrin
2016-08-06 00:41:00 -04:00
parent 38184e4893
commit b1da05474a
4 changed files with 34 additions and 2 deletions

View File

@@ -9,5 +9,6 @@ namespace Bit.App.Abstractions
public interface IDeviceApiRepository : IApiRepository<DeviceRequest, DeviceResponse, string>
{
Task<ApiResult<DeviceResponse>> PutTokenAsync(string identifier, DeviceTokenRequest request);
Task<ApiResult<DeviceResponse>> PutClearTokenAsync(string identifier);
}
}