Skip to content

Commit

Permalink
Add owner property to TrustedDevices type (#48408)
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 committed Nov 8, 2024
1 parent eb6daa0 commit adeeed2
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 adeeed2

Please sign in to comment.