ui: remove cluster downloads (no use anymore)

This commit is contained in:
Mikaël Cluseau
2026-06-17 18:35:49 +02:00
parent 99592d6efb
commit d975836adf
5 changed files with 8 additions and 16 deletions
+19
View File
@@ -0,0 +1,19 @@
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" />
`
}