1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-03 00:52:49 -05:00

Added device service. Added API for clearing out token for a device identifier (used for push unregister).

This commit is contained in:
Kyle Spearrin
2016-08-05 23:59:59 -04:00
parent f456a4fca8
commit 0727b75a83
4 changed files with 68 additions and 3 deletions

View File

@ -0,0 +1,10 @@
using System.Threading.Tasks;
using Bit.Core.Domains;
namespace Bit.Core.Services
{
public interface IDeviceService
{
Task SaveAsync(Device device);
}
}