a4270c7701
* reroute pki config routes * issuers routes * refactor role routes * add issuer/generate- routes * update key routes * refactor cert routes; * template cleanup, update routes * update component names with pki- * update components in test files
23 lines
593 B
Handlebars
23 lines
593 B
Handlebars
<SecretListHeader
|
||
@model={{this.model}}
|
||
@backendCrumb={{hash
|
||
label=this.model.id
|
||
text=this.model.id
|
||
path="vault.cluster.secrets.backend.list-root"
|
||
model=this.model.id
|
||
}}
|
||
@isEngine={{true}}
|
||
/>
|
||
<Toolbar>
|
||
<ToolbarActions>
|
||
<ToolbarLink @route="configuration.create">
|
||
Configure PKI
|
||
</ToolbarLink>
|
||
</ToolbarActions>
|
||
</Toolbar>
|
||
|
||
<EmptyState @title="PKI not configured" @message="This PKI mount hasn’t yet been configured with a certificate issuer.">
|
||
<LinkTo @route="configuration.create" @model={{this.model}}>
|
||
Configure PKI
|
||
</LinkTo>
|
||
</EmptyState> |