redoc/lib/components/Method/method.html
2015-10-25 13:26:38 +02:00

27 lines
884 B
HTML

<div class="method">
<div class="content">
<h2>{{data.methodInfo.summary}}</h2>
<h3>
<span class="http-method" [ng-class]="data.method">{{data.method}}</span>
<span class="path">{{data.path}}</span>
</h3>
<p *ng-if="data.methodInfo.description" class="method-description"
inner-html="{{data.methodInfo.description | marked}}">
</p>
<br>
<params-list pointer="{{pointer}}/parameters"> </params-list>
<br>
<responses-list pointer="{{pointer}}/responses"> </responses-list>
</div>
<div class="samples">
<div *ng-if="data.bodyParam">
<header> Body sample </header>
<schema-sample pointer="{{data.bodyParam._pointer}}/schema"> </schema-sample>
</div>
<div>
<header> Responses samples </header>
<responses-samples pointer="{{pointer}}/responses"> </responses-samples>
</div>
</div>
<div>