Skip to content

Commit

Permalink
Fix plugin schema path
Browse files Browse the repository at this point in the history
  • Loading branch information
scastrianni committed Jan 6, 2024
1 parent 0f123dc commit 9dcd891
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions konnect/client/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@ package client
import "strings"

const (
PluginPath = ControlPlanePathGet + "/core-entities/plugins"
PluginPathGet = PluginPath + "/%s"
// TODO: Fix this endpoint path to updated value
PluginSchemaPath = "control_planes/%s/schemas/plugins/%s"
PluginPath = ControlPlanePathGet + "/core-entities/plugins"
PluginPathGet = PluginPath + "/%s"
PluginSchemaPath = ControlPlanePathGet + "/core-entities/schemas/plugins/%s"
)

type Plugin struct {
Expand Down

0 comments on commit 9dcd891

Please sign in to comment.