2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-08 10:34:38 +08:00

fix: 重复的SSH设置

This commit is contained in:
2026-01-23 05:44:19 +08:00
parent 7f2c693735
commit 6811eb290f
6 changed files with 1 additions and 96 deletions

View File

@@ -1,8 +1,6 @@
import { http } from '@/utils'
export default {
ssh: (): any => http.Get('/safe/ssh'),
updateSsh: (status: boolean, port: number): any => http.Post('/safe/ssh', { status, port }),
pingStatus: (): any => http.Get('/safe/ping'),
updatePingStatus: (status: boolean): any => http.Post('/safe/ping', { status })
}