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`

Adding as optional for now to not break `e` and will change after the
`e` changes are in.
  • Loading branch information
avatus authored Nov 5, 2024
1 parent 5d7eb65 commit 809344c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions web/packages/teleport/src/DeviceTrust/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export type TrustedDevice = {
assetTag: string;
osType: TrustedDeviceOSType;
enrollStatus: string;
owner?: string;
};

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

0 comments on commit 809344c

Please sign in to comment.