20 lines
616 B
JavaScript
20 lines
616 B
JavaScript
const Cluster = {
|
|
components: { ClusterAccess, ClusterCAs, GetCopy },
|
|
props: [ 'cluster', 'token', 'state' ],
|
|
template: `
|
|
<ClusterAccess :cluster="cluster" :token="token" :state="state" />
|
|
|
|
<h3>Tokens</h3>
|
|
<section class="links">
|
|
<GetCopy v-for="n in cluster.Tokens" :token="token" :name="n" :href="'/clusters/'+cluster.Name+'/tokens/'+n" />
|
|
</section>
|
|
|
|
<h3>Passwords</h3>
|
|
<section class="links">
|
|
<GetCopy v-for="n in cluster.Passwords" :token="token" :name="n" :href="'/clusters/'+cluster.Name+'/passwords/'+n" />
|
|
</section>
|
|
|
|
<ClusterCAs :cluster="cluster" :token="token" />
|
|
`
|
|
}
|