Skip to content

Commit

Permalink
Move enum values after description
Browse files Browse the repository at this point in the history
  • Loading branch information
andrii-balitskyi committed Aug 28, 2024
1 parent 9e45e47 commit 86fcb76
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
10 changes: 6 additions & 4 deletions docs/api/acs/systems/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,10 @@ Errors associated with the `acs_system`.

### `external_type`

Format: `Enum`\
Format: `Enum`

Brand-specific terminology for the `acs_system` type.

Possible enum values:
- `pti_site`
- `alta_org`
Expand All @@ -81,8 +84,6 @@ Possible enum values:
- `assa_abloy_credential_service`
- `latch_building`

Brand-specific terminology for the `acs_system` type.

---

### `external_type_display_name`
Expand Down Expand Up @@ -123,7 +124,8 @@ Name of the `acs_system`.
**Deprecated**. Use `external_type`.
{% endhint %}

Format: `Enum`\
Format: `Enum`

Possible enum values:
- `pti_site`
- `alta_org`
Expand Down
11 changes: 6 additions & 5 deletions src/layouts/api-route.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,18 @@
{% endhint %}
{{/if}}

Format: `{{format}}`{{#if enumValues}}\\{{/if}}
Format: `{{format}}`
{{#if description}}

{{description}}
{{/if}}
{{#if enumValues}}

Possible enum values:
{{#each enumValues}}
- `{{this}}`
{{/each}}
{{/if}}
{{#if description}}

{{description}}
{{/if}}

---
Expand Down

0 comments on commit 86fcb76

Please sign in to comment.