mirror of
https://github.com/fosrl/pangolin.git
synced 2026-06-12 18:37:20 +00:00
use resource name in ssh/rdp/vnc page meta
This commit is contained in:
@@ -58,6 +58,7 @@ export async function getBrowserTarget(
|
||||
authToken: browserGatewayTarget.authToken,
|
||||
resourceId: resources.resourceId,
|
||||
niceId: resources.niceId,
|
||||
name: resources.name,
|
||||
orgId: resources.orgId,
|
||||
pamMode: resources.pamMode,
|
||||
authDaemonMode: resources.authDaemonMode
|
||||
@@ -93,7 +94,8 @@ export async function getBrowserTarget(
|
||||
authDaemonMode: browserTarget.authDaemonMode,
|
||||
orgId: browserTarget.orgId,
|
||||
resourceId: browserTarget.resourceId,
|
||||
niceId: browserTarget.niceId
|
||||
niceId: browserTarget.niceId,
|
||||
name: browserTarget.name
|
||||
},
|
||||
success: true,
|
||||
error: false,
|
||||
|
||||
@@ -5,6 +5,7 @@ export type GetBrowserTargetResponse = {
|
||||
orgId: string;
|
||||
resourceId: number;
|
||||
niceId: string;
|
||||
name: string;
|
||||
pamMode: "passthrough" | "push" | null;
|
||||
authDaemonMode: "site" | "remote" | "native" | null;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user