1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

Remove v3 updates from UI

This commit is contained in:
Mark McDowall
2025-10-06 06:48:38 +09:00
parent ff5e73273b
commit 37dfad11f2
3 changed files with 4 additions and 18 deletions
@@ -80,8 +80,6 @@ export const RESTORE_BACKUP = 'system/backups/restoreBackup';
export const CLEAR_RESTORE_BACKUP = 'system/backups/clearRestoreBackup';
export const DELETE_BACKUP = 'system/backups/deleteBackup';
export const FETCH_UPDATES = 'system/updates/fetchUpdates';
export const RESTART = 'system/restart';
export const SHUTDOWN = 'system/shutdown';
@@ -100,8 +98,6 @@ export const restoreBackup = createThunk(RESTORE_BACKUP);
export const clearRestoreBackup = createAction(CLEAR_RESTORE_BACKUP);
export const deleteBackup = createThunk(DELETE_BACKUP);
export const fetchUpdates = createThunk(FETCH_UPDATES);
export const restart = createThunk(RESTART);
export const shutdown = createThunk(SHUTDOWN);
@@ -180,8 +176,6 @@ export const actionHandlers = handleThunks({
[DELETE_BACKUP]: createRemoveItemHandler(backupsSection, '/system/backup'),
[FETCH_UPDATES]: createFetchHandler('system.updates', '/update'),
[RESTART]: function(getState, payload, dispatch) {
const promise = createAjaxRequest({
url: '/system/restart',