Add new shared variable and update variable usage

This commit is contained in:
Andras Bacsai
2024-01-23 20:26:45 +01:00
parent 7a51acbf8d
commit 238337fecb
4 changed files with 26 additions and 7 deletions

View File

@@ -429,6 +429,13 @@ const magicActions = [{
tags: 'api,tokens,rest',
icon: 'goto',
sequence: ['main', 'redirect']
},
{
id: 26,
name: 'Goto: Team Shared Variables',
tags: 'team,shared,variables',
icon: 'goto',
sequence: ['main', 'redirect']
}
]
const initialState = {
@@ -665,6 +672,9 @@ async function redirect() {
case 25:
targetUrl.pathname = `/security/api-tokens`
break;
case 26:
targetUrl.pathname = `/team/shared-variables`
break;
}
window.location.href = targetUrl;
}