mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-12 12:40:53 +00:00
[html2] Change to correct variable (#18685)
This commit is contained in:
parent
3d15864eac
commit
9b0ca06442
@ -507,7 +507,7 @@
|
||||
</tr>
|
||||
{{#headers}}
|
||||
<tr>
|
||||
<td>{{name}}</td>
|
||||
<td>{{baseName}}</td>
|
||||
<td>{{#datatype}}{{dataType}}{{/datatype}}</td>
|
||||
<td>{{dataFormat}}</td>
|
||||
<td>{{description}}</td>
|
||||
|
@ -9591,19 +9591,19 @@ The password for login in clear text
|
||||
<th>Description</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>SetDashCookie</td>
|
||||
<td>Set-Cookie</td>
|
||||
<td>String</td>
|
||||
<td></td>
|
||||
<td>Cookie authentication key for use with the `api_key` apiKey authentication.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>XDashRateDashLimit</td>
|
||||
<td>X-Rate-Limit</td>
|
||||
<td>Integer</td>
|
||||
<td>int32</td>
|
||||
<td>calls per hour allowed by the user</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>XDashExpiresDashAfter</td>
|
||||
<td>X-Expires-After</td>
|
||||
<td>Date</td>
|
||||
<td>date-time</td>
|
||||
<td>date in UTC when token expires</td>
|
||||
@ -11660,7 +11660,7 @@ var JSONSchemaView = (function () {
|
||||
// Determine if a schema is an array
|
||||
this.isArray = !this.isAny && this.schema && this.schema.type === 'array';
|
||||
|
||||
this.isObject = this.schema && (this.schema.type === 'object' || this.schema.properties || this.schema.anyOf || this.schema.oneof || this.schema.allOf);
|
||||
this.isObject = this.schema && (this.schema.type === 'object' || this.schema.properties || this.schema.anyOf || this.schema.oneOf || this.schema.allOf);
|
||||
|
||||
// Determine if a schema is a primitive
|
||||
this.isPrimitive = !this.isAny && !this.isArray && !this.isObject;
|
||||
|
Loading…
x
Reference in New Issue
Block a user