From a04dc72b0008a839f2ae6fbc01a248c4192522b5 Mon Sep 17 00:00:00 2001 From: shats Date: Tue, 20 Jan 2026 17:39:11 +0700 Subject: [PATCH] feat(serverUtils): add BGP router option to server type selection for enhanced server management --- frontend/src/utils/serverUtils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/utils/serverUtils.js b/frontend/src/utils/serverUtils.js index 25de61f..e9e7224 100644 --- a/frontend/src/utils/serverUtils.js +++ b/frontend/src/utils/serverUtils.js @@ -91,6 +91,7 @@ export const needsGateways = (type) => { export const SERVER_TYPE_OPTIONS = [ { value: 'jumphost', label: 'Jumphost' }, { value: 'exit', label: 'Выходная нода' }, + { value: 'bgp', label: 'BGP роутер' }, ]; /**