From c522976058cd8d464d7b3a3ba3d404dbe3dab6d5 Mon Sep 17 00:00:00 2001 From: Maximilian Seifert Date: Mon, 25 Mar 2019 19:25:59 +0100 Subject: [PATCH] Add DisplayName field to device structure Signed-off-by: Maximilian Seifert --- clientapi/auth/authtypes/device.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clientapi/auth/authtypes/device.go b/clientapi/auth/authtypes/device.go index a6d3a7b08..0c53f8194 100644 --- a/clientapi/auth/authtypes/device.go +++ b/clientapi/auth/authtypes/device.go @@ -21,5 +21,6 @@ type Device struct { // The access_token granted to this device. // This uniquely identifies the device from all other devices and clients. AccessToken string - // TODO: display name, last used timestamp, keys, etc + DisplayName string + // TODO: last used timestamp, keys, etc }