Skip to content

Commit

Permalink
Add owner property to TrustedDevices type (#48408) (#48694) (#49289)
Browse files Browse the repository at this point in the history
This adds the owner property to our TrustedDevices type to support
adding owner to our device trust table in `e`
  • Loading branch information
avatus authored Nov 20, 2024
1 parent cde2dc5 commit 062c212
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/packages/teleport/src/DeviceTrust/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ export type TrustedDevice = {
id: string;
assetTag: string;
osType: TrustedDeviceOSType;
enrollStatus: string;
enrollStatus: 'enrolled' | 'not enrolled';
owner?: string;
};

export type TrustedDeviceOSType = 'Windows' | 'Linux' | 'macOS';
Expand Down

0 comments on commit 062c212

Please sign in to comment.