Integrated the RemoteSSH & RemoteSFTP components into the routes
This commit is contained in:
parent
b1e65028a1
commit
3518b9b8a5
@ -12,6 +12,8 @@ import Encoder from "@/pages/tools/base64/Encoder";
|
|||||||
import Decoder from "@/pages/tools/base64/Decoder";
|
import Decoder from "@/pages/tools/base64/Decoder";
|
||||||
import QRCode from "@/pages/tools/general/QRCode";
|
import QRCode from "@/pages/tools/general/QRCode";
|
||||||
import InstallSoftware from "@/pages/tools/linux/InstallSoftware";
|
import InstallSoftware from "@/pages/tools/linux/InstallSoftware";
|
||||||
|
import RemoteSSH from "@/pages/tools/linux/RemoteSSH";
|
||||||
|
import RemoteSFTP from "@/pages/tools/linux/RemoteSFTP";
|
||||||
|
|
||||||
export const routes = {
|
export const routes = {
|
||||||
Allgemein: [
|
Allgemein: [
|
||||||
@ -46,12 +48,14 @@ export const routes = {
|
|||||||
{
|
{
|
||||||
path: '/linux/ssh',
|
path: '/linux/ssh',
|
||||||
name: 'Remote-SSH',
|
name: 'Remote-SSH',
|
||||||
icon: faTerminal
|
icon: faTerminal,
|
||||||
|
component: <RemoteSSH />
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/linux/sftp',
|
path: '/linux/sftp',
|
||||||
name: 'Remote-SFTP',
|
name: 'Remote-SFTP',
|
||||||
icon: faFolder
|
icon: faFolder,
|
||||||
|
component: <RemoteSFTP />
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/linux/software',
|
path: '/linux/software',
|
||||||
|
Reference in New Issue
Block a user