Skip to content

Commit

Permalink
feat: add "self hosted server" device type
Browse files Browse the repository at this point in the history
This adds a new device type, `selfHostedServer`. This is part of our
self-hosted cloud work.
  • Loading branch information
EvanHahn committed Jun 19, 2024
1 parent e715758 commit 5b5cc23
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions proto/deviceInfo/v1.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ message DeviceInfo_1 {
mobile = 0;
tablet = 1;
desktop = 2;
selfHostedServer = 3;
}

string name = 5;
Expand Down
2 changes: 1 addition & 1 deletion schema/deviceInfo/v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
},
"deviceType": {
"type": "string",
"enum": ["mobile", "tablet", "desktop", "UNRECOGNIZED"],
"enum": ["mobile", "tablet", "desktop", "selfHostedServer", "UNRECOGNIZED"],
"description": "Type of device"
}
},
Expand Down

0 comments on commit 5b5cc23

Please sign in to comment.