redoc/lib/components/ResponsesList/responses-list.html

7 lines
356 B
HTML
Raw Normal View History

2015-11-23 23:57:49 +03:00
<h2 class="responses-list-header" *ng-if="data.responses.length"> Responses </h2>
<zippy *ng-for="#response of data.responses" title="{{response.code}} {{response.description}}"
[type]="response.type" [empty]="!response.schema">
2015-11-24 01:08:11 +03:00
<json-schema *ng-if="response.schema" class="schema type" pointer="{{response.pointer}}/schema">
</json-schema>
2015-11-23 23:57:49 +03:00
</zippy>