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 4d38b13 commit 0fb65b5Copy full SHA for 0fb65b5
server/routers/resource/listResources.ts
@@ -47,6 +47,7 @@ type JoinedRow = {
47
niceId: string;
48
name: string;
49
ssl: boolean;
50
+ niceId: string;
51
fullDomain: string | null;
52
passwordId: number | null;
53
sso: boolean;
@@ -79,7 +80,7 @@ export type ResourceWithTargets = {
79
80
proxyPort: number | null;
81
enabled: boolean;
82
domainId: string | null;
- niceId: string | null;
83
84
targets: Array<{
85
targetId: number;
86
ip: string;
@@ -261,6 +262,7 @@ export async function listResources(
261
262
proxyPort: row.proxyPort,
263
enabled: row.enabled,
264
domainId: row.domainId,
265
+ niceId: row.niceId,
266
targets: [],
267
};
268
map.set(row.resourceId, entry);
0 commit comments