Browse Source

Show slug instead of name for pipelines in index metadata

feature/add-pipelines-to-metadata
Fabian Vowie 2 years ago
parent
commit
df92fc1817
No known key found for this signature in database GPG Key ID: C27317C33B27C410
  1. 2
      main.go
  2. 2
      main_test.go

2
main.go

@ -39,7 +39,7 @@ func PipelineHandler(pipeline pipelines.IPipeline, storageProvider storage.IStor
func IndexHandler(pipelines []pipelines.IPipeline, w http.ResponseWriter, r *http.Request) {
var pipelineNames []string
for _, x := range pipelines {
pipelineNames = append(pipelineNames, x.GetName())
pipelineNames = append(pipelineNames, x.GetSlug())
}
w.Header().Set("Content-Type", "application/json")

2
main_test.go

@ -44,7 +44,7 @@ func TestIndexRoute(t *testing.T) {
err = json.Unmarshal(responseRecorder.Body.Bytes(), &body)
assert.Nil(t, err)
assert.Equal(t, 1, len(body.Pipelines))
assert.Equal(t, data.Name, body.Pipelines[0])
assert.Equal(t, data.Slug, body.Pipelines[0])
})
}

Loading…
Cancel
Save