From 14bf52b2da88555cbab3bca7ae33062cf32d7625 Mon Sep 17 00:00:00 2001 From: Matt Jacobs Date: Thu, 21 Feb 2019 12:11:02 -0800 Subject: [PATCH] feat(gremlin): Per feedback review within gate, change the Gate gremlin endpoint prefix from "gremlin" to "integrations/gremlin" (#6591) --- .../src/pipeline/config/stages/gremlin/GremlinStageConfig.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/scripts/modules/core/src/pipeline/config/stages/gremlin/GremlinStageConfig.tsx b/app/scripts/modules/core/src/pipeline/config/stages/gremlin/GremlinStageConfig.tsx index 1b139129e58..12ea3cde90e 100644 --- a/app/scripts/modules/core/src/pipeline/config/stages/gremlin/GremlinStageConfig.tsx +++ b/app/scripts/modules/core/src/pipeline/config/stages/gremlin/GremlinStageConfig.tsx @@ -32,7 +32,7 @@ export class GremlinStageConfig extends React.Component { private fetchCommands = (apiKey: string) => { return Observable.fromPromise( - API.one('gremlin/templates/command') + API.one('integrations/gremlin/templates/command') .post({ apiKey, }) @@ -42,7 +42,7 @@ export class GremlinStageConfig extends React.Component { private fetchTargets = (apiKey: string) => { return Observable.fromPromise( - API.one('gremlin/templates/target') + API.one('integrations/gremlin/templates/target') .post({ apiKey, })