Added pterodactyl to the software.jsx
This commit is contained in:
parent
a2374e04fe
commit
a2e0b513d7
@ -2,7 +2,16 @@ import UpdateImage from "./images/update.webp";
|
||||
import MySpeedImage from "./images/myspeed.webp";
|
||||
import DockerImage from "./images/docker.webp";
|
||||
import NextCloudImage from "./images/nextcloud.webp";
|
||||
import {faBox, faFolder, faGlobe, faInfoCircle, faKey, faUser} from "@fortawesome/free-solid-svg-icons";
|
||||
import PterodactylImage from "./images/pterodactyl.webp";
|
||||
import {
|
||||
faBox, faEnvelope,
|
||||
faFolder,
|
||||
faGlobe,
|
||||
faInfoCircle,
|
||||
faKey,
|
||||
faLanguage, faMailBulk, faServer,
|
||||
faUser
|
||||
} from "@fortawesome/free-solid-svg-icons";
|
||||
|
||||
export default [
|
||||
{
|
||||
@ -39,5 +48,17 @@ export default [
|
||||
{type: "input", id: "user", text: "Benutzer", icon: faUser, value: "Admin"},
|
||||
{type: "input", id: "pass", text: "Passwort", icon: faKey, value: () => Math.random().toString(36).slice(-8)}
|
||||
]
|
||||
},
|
||||
{
|
||||
name: "Pterodactyl",
|
||||
icon: PterodactylImage,
|
||||
configuration: [
|
||||
{type: "input", id: "folder", text: "Ort", icon: faFolder, value: "/var/www/pterodactyl"},
|
||||
{type: "input", id: "domain", text: "Domain", icon: faGlobe, value: "pterodactyl.example.com"},
|
||||
{type: "select", id: "german", text: <a href="https://germandactyl.de" target="_blank">GermanDactyl</a>,
|
||||
icon: faLanguage, options: ["Ja", "Nein"], value: "Ja"},
|
||||
{type: "input", id: "mail", text: "E-Mail", icon: faEnvelope, value: "unknown@example.com"},
|
||||
{type: "input", id: "pass", text: "Passwort", icon: faKey, value: () => Math.random().toString(36).slice(-8)},
|
||||
]
|
||||
}
|
||||
];
|
Reference in New Issue
Block a user