All,
There is a method in the Widget API as follows
@ResponseBody
@RequestMapping(method = RequestMethod.GET, value = "/{widgetId}/tags")
public List<Tag> getTags(@PathVariable String widgetId) {
return tagService.getAvailableTagsByWidgetId(widgetId);
}
Based on the url pattern it feels like it should return all the tags that
are assigned to this widget but instead it returns all the tags NOT
assigned to this widget. I'm going to "fix" it so that it returns all the
tags assigned to the widget and I'll find another way to get all the
unassigned tags. Any heartburn?
Chris