Merge pull request #1324 from Dokploy/1320-missing-path-option-when-adding-a-template-in-dokploy

refactor: add missing path option
This commit is contained in:
Mauricio Siu
2025-02-15 14:09:33 -06:00
committed by GitHub

View File

@@ -12,7 +12,9 @@ export interface Schema {
projectName: string;
}
export type DomainSchema = Pick<Domain, "host" | "port" | "serviceName">;
export type DomainSchema = Pick<Domain, "host" | "port" | "serviceName"> & {
path?: string;
};
export interface Template {
envs?: string[];