add s3 to magicbar

This commit is contained in:
Andras Bacsai 2023-10-20 15:02:40 +02:00
parent e2a256b31c
commit 5d9cfc393e

View File

@ -339,85 +339,92 @@ const magicActions = [{
}, },
{ {
id: 11, id: 11,
name: 'Goto: Dashboard', name: 'Goto: S3 Storage',
tags: 's3,storage',
icon: 'goto', icon: 'goto',
sequence: ['main', 'redirect'] sequence: ['main', 'redirect']
}, },
{ {
id: 12, id: 12,
name: 'Goto: Servers', name: 'Goto: Dashboard',
icon: 'goto', icon: 'goto',
sequence: ['main', 'redirect'] sequence: ['main', 'redirect']
}, },
{ {
id: 13, id: 13,
name: 'Goto: Servers',
icon: 'goto',
sequence: ['main', 'redirect']
},
{
id: 14,
name: 'Goto: Private Keys', name: 'Goto: Private Keys',
tags: 'destination,docker,network,new,create,ssh,private,key', tags: 'destination,docker,network,new,create,ssh,private,key',
icon: 'goto', icon: 'goto',
sequence: ['main', 'redirect'] sequence: ['main', 'redirect']
}, },
{ {
id: 14, id: 15,
name: 'Goto: Projects', name: 'Goto: Projects',
icon: 'goto', icon: 'goto',
sequence: ['main', 'redirect'] sequence: ['main', 'redirect']
}, },
{ {
id: 15, id: 16,
name: 'Goto: Sources', name: 'Goto: Sources',
icon: 'goto', icon: 'goto',
sequence: ['main', 'redirect'] sequence: ['main', 'redirect']
}, },
{ {
id: 16, id: 17,
name: 'Goto: Destinations', name: 'Goto: Destinations',
icon: 'goto', icon: 'goto',
sequence: ['main', 'redirect'] sequence: ['main', 'redirect']
}, },
{ {
id: 17, id: 18,
name: 'Goto: Settings', name: 'Goto: Settings',
icon: 'goto', icon: 'goto',
sequence: ['main', 'redirect'] sequence: ['main', 'redirect']
}, },
{ {
id: 18, id: 19,
name: 'Goto: Command Center', name: 'Goto: Command Center',
icon: 'goto', icon: 'goto',
sequence: ['main', 'redirect'] sequence: ['main', 'redirect']
}, },
{ {
id: 19, id: 20,
name: 'Goto: Notifications', name: 'Goto: Notifications',
icon: 'goto', icon: 'goto',
sequence: ['main', 'redirect'] sequence: ['main', 'redirect']
}, },
{ {
id: 20, id: 21,
name: 'Goto: Profile', name: 'Goto: Profile',
icon: 'goto', icon: 'goto',
sequence: ['main', 'redirect'] sequence: ['main', 'redirect']
}, },
{ {
id: 21, id: 22,
name: 'Goto: Teams', name: 'Goto: Teams',
icon: 'goto', icon: 'goto',
sequence: ['main', 'redirect'] sequence: ['main', 'redirect']
}, },
{ {
id: 22, id: 23,
name: 'Goto: Switch Teams', name: 'Goto: Switch Teams',
icon: 'goto', icon: 'goto',
sequence: ['main', 'redirect'] sequence: ['main', 'redirect']
}, },
{ {
id: 23, id: 24,
name: 'Goto: Boarding process', name: 'Goto: Boarding process',
icon: 'goto', icon: 'goto',
sequence: ['main', 'redirect'] sequence: ['main', 'redirect']
}, },
{ {
id: 24, id: 25,
name: 'Goto: API Tokens', name: 'Goto: API Tokens',
tags: 'api,tokens,rest', tags: 'api,tokens,rest',
icon: 'goto', icon: 'goto',
@ -614,45 +621,48 @@ async function redirect() {
targetUrl.pathname = `/team/storages/new` targetUrl.pathname = `/team/storages/new`
break; break;
case 11: case 11:
targetUrl.pathname = `/` targetUrl.pathname = `/team/storages/`
break; break;
case 12: case 12:
targetUrl.pathname = `/servers` targetUrl.pathname = `/`
break; break;
case 13: case 13:
targetUrl.pathname = `/security/private-key` targetUrl.pathname = `/servers`
break; break;
case 14: case 14:
targetUrl.pathname = `/projects` targetUrl.pathname = `/security/private-key`
break; break;
case 15: case 15:
targetUrl.pathname = `/sources` targetUrl.pathname = `/projects`
break; break;
case 16: case 16:
targetUrl.pathname = `/destinations` targetUrl.pathname = `/sources`
break; break;
case 17: case 17:
targetUrl.pathname = `/settings` targetUrl.pathname = `/destinations`
break; break;
case 18: case 18:
targetUrl.pathname = `/command-center` targetUrl.pathname = `/settings`
break; break;
case 19: case 19:
targetUrl.pathname = `/team/notifications` targetUrl.pathname = `/command-center`
break; break;
case 20: case 20:
targetUrl.pathname = `/profile` targetUrl.pathname = `/team/notifications`
break; break;
case 21: case 21:
targetUrl.pathname = `/team` targetUrl.pathname = `/profile`
break; break;
case 22: case 22:
targetUrl.pathname = `/team` targetUrl.pathname = `/team`
break; break;
case 23: case 23:
targetUrl.pathname = `/boarding` targetUrl.pathname = `/team`
break; break;
case 24: case 24:
targetUrl.pathname = `/boarding`
break;
case 25:
targetUrl.pathname = `/security/api-tokens` targetUrl.pathname = `/security/api-tokens`
break; break;
} }