redoc/lib/components/Method/method.html

29 lines
1.1 KiB
HTML
Raw Normal View History

2015-10-21 14:07:22 +03:00
<div class="method">
<div class="method-content">
2015-11-29 20:24:46 +03:00
<h2 class="method-header sharable-header">
<a class="share-link" href="#{{tag}}{{pointer}}"></a>{{data.methodInfo.summary}}
2015-11-27 01:43:01 +03:00
</h2>
<h3 class="method-endpoint">
2015-12-19 03:24:25 +03:00
<span class="http-method" [ngClass]="data.httpMethod">{{data.httpMethod}}</span>
2015-11-17 01:03:09 +03:00
<span class="api-url">{{data.apiUrl}}</span> <span class="path">{{data.path}}</span>
2015-10-21 14:07:22 +03:00
</h3>
<div class="method-tags" *ngIf="data.methodInfo.tags.length">
<a *ngFor="#tag of data.methodInfo.tags" attr.href="#{{tag}}"> {{tag}} </a>
2015-10-30 12:43:51 +03:00
</div>
<p *ngIf="data.methodInfo.description" class="method-description"
innerHtml="{{data.methodInfo.description | marked}}">
2015-10-21 14:07:22 +03:00
</p>
<params-list pointer="{{pointer}}/parameters"> </params-list>
<responses-list pointer="{{pointer}}/responses"> </responses-list>
</div>
<div class="method-samples">
<div *ngIf="data.bodyParam">
2015-10-25 14:26:38 +03:00
<header> Body sample </header>
<schema-sample pointer="{{data.bodyParam._pointer}}/schema"> </schema-sample>
</div>
<div>
<responses-samples pointer="{{pointer}}/responses"> </responses-samples>
</div>
2015-10-21 14:07:22 +03:00
</div>
<div>