mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
SDA-3964 Adding IV channel for corp auto-update
This commit is contained in:
parent
c93f741bce
commit
3be74a20b9
@ -110,6 +110,7 @@ enum Channels {
|
||||
Beta = 'beta',
|
||||
Stable = 'stable',
|
||||
Latest = 'latest',
|
||||
IV = 'iv',
|
||||
}
|
||||
|
||||
const menuItemsArray = Object.keys(menuSections)
|
||||
@ -745,6 +746,15 @@ export class AppMenu {
|
||||
checked: this.getUpdateChannel() === Channels.Latest,
|
||||
label: i18n.t('Latest')(),
|
||||
},
|
||||
{
|
||||
id: `${Target.SDA}-${Channels.IV}`,
|
||||
click: (_item) =>
|
||||
this.setUpdateChannelForMenuEntry(Target.SDA, Channels.IV),
|
||||
visible: isCorp,
|
||||
type: 'checkbox',
|
||||
checked: this.getUpdateChannel() === Channels.IV,
|
||||
label: i18n.t('C9 - IV')(),
|
||||
},
|
||||
{
|
||||
id: `${Target.SDA}-${Channels.Beta}`,
|
||||
click: (_item) =>
|
||||
|
Loading…
Reference in New Issue
Block a user