Skip to content

Commit

Permalink
feat(gremlin): Per feedback review within gate, change the Gate greml…
Browse files Browse the repository at this point in the history
…in endpoint prefix from "gremlin" to "integrations/gremlin" (#6591)
  • Loading branch information
mattrjacobs authored and ajordens committed Feb 21, 2019
1 parent 2b2ccff commit 14bf52b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class GremlinStageConfig extends React.Component<IStageConfigProps> {

private fetchCommands = (apiKey: string) => {
return Observable.fromPromise(
API.one('gremlin/templates/command')
API.one('integrations/gremlin/templates/command')
.post({
apiKey,
})
Expand All @@ -42,7 +42,7 @@ export class GremlinStageConfig extends React.Component<IStageConfigProps> {

private fetchTargets = (apiKey: string) => {
return Observable.fromPromise(
API.one('gremlin/templates/target')
API.one('integrations/gremlin/templates/target')
.post({
apiKey,
})
Expand Down

0 comments on commit 14bf52b

Please sign in to comment.