Skip to content

Commit 3a7bb50

Browse files
authored
Merge pull request #1324 from Dokploy/1320-missing-path-option-when-adding-a-template-in-dokploy
refactor: add missing path option
2 parents 2ddfc83 + 23b5907 commit 3a7bb50

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

apps/dokploy/templates/utils/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ export interface Schema {
1212
projectName: string;
1313
}
1414

15-
export type DomainSchema = Pick<Domain, "host" | "port" | "serviceName">;
15+
export type DomainSchema = Pick<Domain, "host" | "port" | "serviceName"> & {
16+
path?: string;
17+
};
1618

1719
export interface Template {
1820
envs?: string[];

0 commit comments

Comments
 (0)