Add DisplayName field to device structure

Signed-off-by: Maximilian Seifert <max.seifert@drglitch.net>
This commit is contained in:
Maximilian Seifert 2019-03-25 19:25:59 +01:00
parent a81917c3e7
commit c522976058

View file

@ -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
}