removed required and readonly properties from html output when documenting return

This commit is contained in:
Evan Villemez 2012-08-29 14:12:12 -04:00
parent ebba238f1c
commit 94a3d5858f

View File

@ -116,8 +116,6 @@
<tr> <tr>
<th>Parameter</th> <th>Parameter</th>
<th>Type</th> <th>Type</th>
<th>Required?</th>
<th>Read Only?</th>
<th>Description</th> <th>Description</th>
</tr> </tr>
</thead> </thead>
@ -126,8 +124,6 @@
<tr> <tr>
<td>{{ name }}</td> <td>{{ name }}</td>
<td>{{ infos.dataType }}</td> <td>{{ infos.dataType }}</td>
<td>{{ infos.required ? 'true' : 'false' }}</td>
<td>{{ infos.readonly ? 'true' : 'false' }}</td>
<td>{{ infos.description }}</td> <td>{{ infos.description }}</td>
</tr> </tr>
{% endfor %} {% endfor %}