Skip to content

Commit

Permalink
ASIRestController: changed "attribute" to "field"
Browse files Browse the repository at this point in the history
  • Loading branch information
teosarca committed May 25, 2017
1 parent de5526c commit 4803f52
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public List<JSONDocument> processChanges(
});
}

@GetMapping("/{asiDocId}/attribute/{attributeName}/typeahead")
@GetMapping("/{asiDocId}/field/{attributeName}/typeahead")
public JSONLookupValuesList getAttributeTypeahead(
@PathVariable("asiDocId") final String asiDocIdStr //
, @PathVariable("attributeName") final String attributeName //
Expand All @@ -124,7 +124,7 @@ public JSONLookupValuesList getAttributeTypeahead(
.transform(JSONLookupValuesList::ofLookupValuesList);
}

@GetMapping("/{asiDocId}/attribute/{attributeName}/dropdown")
@GetMapping("/{asiDocId}/field/{attributeName}/dropdown")
public JSONLookupValuesList getAttributeDropdown(
@PathVariable("asiDocId") final String asiDocIdStr //
, @PathVariable("attributeName") final String attributeName //
Expand Down

0 comments on commit 4803f52

Please sign in to comment.