Skip to content

Commit

Permalink
Implement hasFocus relationship
Browse files Browse the repository at this point in the history
  • Loading branch information
mchompalova committed May 14, 2020
1 parent 8abd901 commit d919995
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions concept/service_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,7 @@ func TestAggregateService_GetConcordedConcept_ConceptWithRelationships(t *testin
BroaderUUIDs: []string{"575a2223-6307-4000-8882-935c27f4e8bb"},
RelatedUUIDs: []string{"b73e632c-9b8d-477d-bb45-aaf574bc015c"},
ImpliedByUUIDs: []string{"b5d7c6b5-db7d-4bce-9d6a-f62195571f92"},
HasFocusUUIDs: []string{"2e7429bd-7a84-41cb-a619-2c702893e359"},
},
},
}
Expand Down Expand Up @@ -1369,6 +1370,7 @@ func setupTestServiceWithTimeout(clientStatusCode int, writerResponse string, ti
BroaderUUIDs: []string{"575a2223-6307-4000-8882-935c27f4e8bb"},
RelatedUUIDs: []string{"b73e632c-9b8d-477d-bb45-aaf574bc015c"},
ImpliedByUUIDs: []string{"b5d7c6b5-db7d-4bce-9d6a-f62195571f92"},
HasFocusUUIDs: []string{"2e7429bd-7a84-41cb-a619-2c702893e359"},
},
},
"94659314-7eb0-423a-8030-c4abf3d6458e": {
Expand Down
1 change: 1 addition & 0 deletions s3/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ type Concept struct {
RelatedUUIDs []string `json:"relatedUUIDs,omitempty"`
SupersededByUUIDs []string `json:"supersededByUUIDs,omitempty"`
ImpliedByUUIDs []string `json:"impliedByUUIDs,omitempty"`
HasFocusUUIDs []string `json:"hasFocusUUIDs,omitempty"`
DescriptionXML string `json:"descriptionXML,omitempty"`
ImageURL string `json:"_imageUrl,omitempty"`
EmailAddress string `json:"emailAddress,omitempty"`
Expand Down

0 comments on commit d919995

Please sign in to comment.