feat: display human-readable user and device names in network management
This commit is contained in:
@@ -2106,6 +2106,8 @@ export interface UserNetworkApproval {
|
||||
id: string;
|
||||
organization_id: string;
|
||||
user_id: string;
|
||||
user_name: string | null;
|
||||
user_email: string | null;
|
||||
portal_network_id: string;
|
||||
granted_by_user_id: string | null;
|
||||
grant_type: ApprovalGrantType;
|
||||
@@ -2121,7 +2123,11 @@ export interface DeviceNetworkMembership {
|
||||
id: string;
|
||||
organization_id: string;
|
||||
user_id: string;
|
||||
user_name: string | null;
|
||||
user_email: string | null;
|
||||
device_id: string;
|
||||
device_name: string | null;
|
||||
device_node_id: string | null;
|
||||
portal_network_id: string;
|
||||
user_network_approval_id: string | null;
|
||||
active: boolean;
|
||||
|
||||
Reference in New Issue
Block a user