redoc/lib/components/Method/method.html

13 lines
412 B
HTML
Raw Normal View History

2015-10-10 15:34:46 +03:00
<h2>{{data.methodInfo.summary}}</h2>
<h3>
<span class="http-method" [ng-class]="data.method">{{data.method}}</span>
<span class="path">{{data.path}}</span>
</h3>
2015-10-18 20:16:40 +03:00
<p *ng-if="data.methodInfo.description" class="method-description">
2015-10-10 15:34:46 +03:00
{{data.methodInfo.description}}
</p>
2015-10-21 12:35:20 +03:00
<br>
2015-10-10 16:01:41 +03:00
<params-list pointer="{{pointer}}/parameters"> </params-list>
2015-10-21 12:20:14 +03:00
<br>
<responses-list pointer="{{pointer}}/responses"> </responses-list>