Skip to content
Snippets Groups Projects
Verified Commit 9b0bc1b8 authored by Peter Oettig's avatar Peter Oettig
Browse files

feat: Link to server documentation

parent 8e8a37ca
No related branches found
No related tags found
1 merge request!6Development
Pipeline #287117 passed
......@@ -12,7 +12,9 @@
</v-card-text>
<v-card-actions>
<v-btn
:to="content.target"
:href="content.target.startsWith('/') ? '' : content.target"
:to="content.target.startsWith('/') ? content.target : ''"
:target="content.target.startsWith('/') ? '' : '_blank'"
:color="content.enabled ? 'primary' : 'kitblack'"
width="100%"
size="large"
......
......@@ -53,7 +53,7 @@ export const de: I18nType = {
server: {
name: "Serverzertifikat",
description:
"Hier können Serverzertifikate ausgestellt werden, die für die sichere Kommunikation zwischen Clients und Servern bzw. zwischen Servern und Servern benötigt werden. Dafür muss die Kontrolle über die Domain nachgewiesen sein.",
"Hier können Serverzertifikate ausgestellt werden, die für die sichere Kommunikation zwischen Clients und Servern bzw. zwischen Servern und Servern benötigt werden. Dafür muss die Kontrolle über die Domain nachgewiesen sein. Aktuell kann dafür entweder ACME verwendet oder ein Zertifikatsantrag per Mail durchgeführt werden.",
},
},
identification: {
......@@ -219,6 +219,9 @@ export const de: I18nType = {
text: "Für Unterstützung können Sie sich an den SCC Service Desk wenden.",
},
},
server: {
instructionsUrl: "https://ca.kit.edu/p/server",
},
},
notFound: {
title: "404 - nicht gefunden",
......
......@@ -53,7 +53,7 @@ export const en: I18nType = {
server: {
name: "Server Certificate",
description:
"This allows you to request a server certificate necessary for secure communication between clients and servers or servers and servers. You will need to prove that you control the domain name that you want to certify.",
"This allows you to request a server certificate necessary for secure communication between clients and servers or servers and servers. You will need to prove that you control the domain name that you want to certify. Currently, either ACME can be used or a certificate request can be sent by email.",
},
},
identification: {
......@@ -218,6 +218,9 @@ export const en: I18nType = {
text: "For assistance, you can contact the SCC Service Desk.",
},
},
server: {
instructionsUrl: "https://ca.kit.edu/p/server-en",
},
},
notFound: {
title: "404 - not found",
......
......@@ -201,6 +201,9 @@ export type I18nType = {
text: string;
};
};
server: {
instructionsUrl: string;
};
};
notFound: {
title: string;
......
......@@ -126,8 +126,8 @@ export default defineComponent({
type: FunctionCardTypes.Certificate,
id: "server",
icon: "computer",
target: "/",
enabled: false,
target: this.$t("request.server.instructionsUrl"),
enabled: true,
},
],
identFunctions: [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment