cc-backend/web/frontend/src/job.entrypoint.js

15 lines
317 B
JavaScript
Raw Normal View History

2022-06-22 11:20:57 +02:00
import {} from './header.entrypoint.js'
import Job from './Job.root.svelte'
new Job({
target: document.getElementById('svelte-app'),
props: {
dbid: jobInfos.id,
authlevel: authlevel,
roles: roles
2022-06-22 11:20:57 +02:00
},
context: new Map([
['cc-config', clusterCockpitConfig]
])
})