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

adjusted put token by identifier to not have a response

This commit is contained in:
Kyle Spearrin
2016-08-06 18:45:23 -04:00
parent 35da8dd4ed
commit a267bf9cf7
3 changed files with 6 additions and 8 deletions

View File

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