Skip to content

Commit 6cdc45e

Browse files
yogesh-chauhanHarness
authored andcommitted
fix: [ML-1335]: fixed 404 issue with list_templates tool (#163)
* fix: [ML-1335]: fixed 404 issue with list_templates tool
1 parent 7a8a370 commit 6cdc45e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client/templates.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import (
1010

1111
const (
1212
// Base API paths
13-
templateAccountPath = "v1/templates"
14-
templateOrgPath = "v1/orgs/%s/templates"
15-
templateProjectPath = "v1/orgs/%s/projects/%s/templates"
13+
templateAccountPath = "/api/v1/templates"
14+
templateOrgPath = "/api/v1/orgs/%s/templates"
15+
templateProjectPath = "/api/v1/orgs/%s/projects/%s/templates"
1616
)
1717

1818
type TemplateService struct {

0 commit comments

Comments
 (0)