We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef491b commit 896e3caCopy full SHA for 896e3ca
server/routers/resource/listResources.ts
@@ -46,6 +46,7 @@ type JoinedRow = {
46
resourceId: number;
47
name: string;
48
ssl: boolean;
49
+ niceId: string;
50
fullDomain: string | null;
51
passwordId: number | null;
52
sso: boolean;
@@ -78,7 +79,7 @@ export type ResourceWithTargets = {
78
79
proxyPort: number | null;
80
enabled: boolean;
81
domainId: string | null;
- niceId: string | null;
82
83
targets: Array<{
84
targetId: number;
85
ip: string;
@@ -254,6 +255,7 @@ export async function listResources(
254
255
proxyPort: row.proxyPort,
256
enabled: row.enabled,
257
domainId: row.domainId,
258
+ niceId: row.niceId,
259
targets: [],
260
};
261
map.set(row.resourceId, entry);
0 commit comments