58dfd8aa68
* add permissions service * start template helper * match prefixed paths * gate sidebar links * land on first page user has access to * show nav when user first logs in * clear paths when user logs out * add tests * implement feedback * show all nav items if no policy is found * update onboarding wizard * fix some unrelated tests * add support for namespaces * gate wizard * unstage package and lockfile
43 lines
1.5 KiB
Handlebars
43 lines
1.5 KiB
Handlebars
<div class="columns">
|
|
{{#menu-sidebar title="Policies" class="is-3" data-test-sidebar=true}}
|
|
{{#if (has-permission "policies" routeParams="acl")}}
|
|
<li>
|
|
{{#link-to "vault.cluster.policies" "acl" data-test-link=true class=(if (is-active-route "vault.cluster.policy" "acl") "is-active")}}
|
|
ACL Policies
|
|
{{/link-to}}
|
|
</li>
|
|
{{/if}}
|
|
{{#if (has-permission "policies" routeParams="rgp")}}
|
|
<li>
|
|
{{#link-to "vault.cluster.policies" "rgp" data-test-link=true class=(if (is-active-route "vault.cluster.policy" "rgp") "is-active")}}
|
|
Role Governing Policies
|
|
{{#unless (has-feature "Sentinel")}}
|
|
{{#if (is-version "OSS")}}
|
|
{{edition-badge edition="Enterprise"}}
|
|
{{else}}
|
|
{{edition-badge edition="Premium"}}
|
|
{{/if}}
|
|
{{/unless}}
|
|
{{/link-to}}
|
|
</li>
|
|
{{/if}}
|
|
{{#if (has-permission "policies" routeParams="egp")}}
|
|
<li>
|
|
{{#link-to "vault.cluster.policies" "egp" data-test-link=true class=(if (is-active-route "vault.cluster.policy" "egp") "is-active")}}
|
|
Endpoint Governing Policies
|
|
{{#unless (has-feature "Sentinel")}}
|
|
{{#if (is-version "OSS")}}
|
|
{{edition-badge edition="Enterprise"}}
|
|
{{else}}
|
|
{{edition-badge edition="Premium"}}
|
|
{{/if}}
|
|
{{/unless}}
|
|
{{/link-to}}
|
|
</li>
|
|
{{/if}}
|
|
{{/menu-sidebar}}
|
|
<div class="column is-9">
|
|
{{outlet}}
|
|
</div>
|
|
</div>
|