{{#if (eq model.httpStatus 404)}} {{not-found model=model}} {{else}}

{{#if (eq model.httpStatus 403)}} Not authorized {{else}} Error {{/if}}

{{#if (and (eq model.httpStatus 403) (eq model.policyPath 'sys/capabilities-self') ) }}

Your auth token does not have access to {{model.policyPath}}. Vault Enterprise uses this endpoint to determine what actions are allowed in the interface.

Make sure the policy for the path {{model.policyPath}} includes capabilities = ['update'].

{{else}} {{#if model.message}}

{{model.message}}

{{/if}} {{#each model.errors as |error|}}

{{error}}

{{/each}} {{/if}}
{{/if}}