mirror of
https://github.com/kestra-io/kestra.git
synced 2025-12-19 18:05:41 -05:00
chore: remove app bluepringts
This commit is contained in:
@@ -1,24 +1,15 @@
|
||||
<template>
|
||||
<TopNavBar :title="routeInfo.title" />
|
||||
<Layout
|
||||
:title="t(`demos.blueprints-${props.type}.title`)"
|
||||
:image="{
|
||||
source: sourceImg,
|
||||
alt: t(`demos.blueprints-${props.type}.title`),
|
||||
:title="t(`demos.blueprints.title`)"
|
||||
:image="{source: sourceImg, alt: t(`demos.blueprints.title`)}"
|
||||
:video="{
|
||||
source: 'https://www.youtube.com/embed/qbGfK-FJi6s?si=UTeK3V5Cj8FRHH91',
|
||||
}"
|
||||
v-bind="
|
||||
props.type === 'flow'
|
||||
? {
|
||||
video: {
|
||||
source: 'https://www.youtube.com/embed/qbGfK-FJi6s?si=UTeK3V5Cj8FRHH91',
|
||||
},
|
||||
}
|
||||
: {}
|
||||
"
|
||||
:embed="props.embed"
|
||||
>
|
||||
<template #message>
|
||||
{{ $t(`demos.blueprints-${props.type}.message`) }}
|
||||
{{ $t(`demos.blueprints.message`) }}
|
||||
</template>
|
||||
</Layout>
|
||||
</template>
|
||||
@@ -35,14 +26,9 @@
|
||||
|
||||
const {t} = useI18n();
|
||||
|
||||
const props = defineProps({
|
||||
embed: {type: Boolean, default: false},
|
||||
type: {type: String, required: true},
|
||||
});
|
||||
|
||||
const routeInfo = computed(() => ({
|
||||
title: t(`demos.blueprints-${props.type}.title`),
|
||||
}));
|
||||
const routeInfo = computed(() => ({title: t("demos.blueprints.title")}));
|
||||
|
||||
useRouteContext(routeInfo);
|
||||
</script>
|
||||
|
||||
const props = defineProps({embed: {type: Boolean, default: false}});
|
||||
</script>
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<DemoBlueprints v-if="props.tab === 'custom' || props.kind === 'app'" :type="props.kind" />
|
||||
<DemoBlueprints v-if="props.tab === 'custom'" />
|
||||
<template v-else>
|
||||
<TopNavBar v-if="!props.embed" :title="routeInfo.title" />
|
||||
<DottedLayout
|
||||
|
||||
@@ -912,14 +912,10 @@
|
||||
"title": "Manage Infrastructure Across Your Instance",
|
||||
"message": "Kestra Enterprise Edition provides an operational dashboard to help you observe the health of your platform and track the uptime metrics of all services such as a.o. Workers, Schedulers, and Executors. From the same page, you can also create Announcements to notify your users about planned downtime, and you can enter a maintenance mode which temporarily puts all services and workflow executions into a paused state to perform an upgrade."
|
||||
},
|
||||
"blueprints-flow": {
|
||||
"blueprints": {
|
||||
"title": "Add Custom Blueprints",
|
||||
"message": "In Kestra Enterprise Edition, you can create custom Blueprints only available to your organization. You can use them as best-practices templates to share, centralize, and document commonly used workflows in your team."
|
||||
},
|
||||
"blueprints-app": {
|
||||
"title": "Add Apps Blueprints",
|
||||
"message": "In Kestra Enterprise Edition, you can create Apps Blueprints only available to your organization. You can use them as best-practices templates to share, centralize, and document commonly used workflows in your team."
|
||||
},
|
||||
"namespace": {
|
||||
"edit": {
|
||||
"title": "Upgrade Your Namespace Management",
|
||||
|
||||
Reference in New Issue
Block a user