[PR #2027] [MERGED] Extend network route with access control groups #16229

Open
opened 2026-08-05 04:05:53 -04:00 by saavagebueno · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/netbirdio/netbird/pull/2027
Author: @bcmmbaga
Created: 5/21/2024
Status: Merged
Merged: 6/4/2024
Merged by: @bcmmbaga

Base: feature/network-route-access-controlHead: extend-network-route-acl-groups


📝 Commits (5)

  • 574dc50 extends route with access control groups
  • d6ab64c add support for creating and updating routes with access control groups
  • 00fd7d3 Add access control groups to routes API request and response
  • cda9c7e fix tests
  • 17f6984 fix tests

📊 Changes

10 files changed (+224 additions, -127 deletions)

View changed files

📝 management/server/account.go (+1 -1)
📝 management/server/account_test.go (+4 -3)
📝 management/server/http/api/openapi.yml (+6 -0)
📝 management/server/http/api/types.gen.go (+6 -0)
📝 management/server/http/routes_handler.go (+14 -2)
📝 management/server/http/routes_handler_test.go (+53 -11)
📝 management/server/mock_server/account_mock.go (+3 -3)
📝 management/server/route.go (+16 -1)
📝 management/server/route_test.go (+94 -83)
📝 route/route.go (+27 -23)

📄 Description

Describe your changes

Checklist

  • Is it a bug fix
  • Is a typo/documentation fix
  • Is a feature enhancement
  • It is a refactor
  • Created tests that fail without the change (if possible)
  • Extended the README / documentation, if necessary

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/netbirdio/netbird/pull/2027 **Author:** [@bcmmbaga](https://github.com/bcmmbaga) **Created:** 5/21/2024 **Status:** ✅ Merged **Merged:** 6/4/2024 **Merged by:** [@bcmmbaga](https://github.com/bcmmbaga) **Base:** `feature/network-route-access-control` ← **Head:** `extend-network-route-acl-groups` --- ### 📝 Commits (5) - [`574dc50`](https://github.com/netbirdio/netbird/commit/574dc504cbc5a257b8ea157580b2667a6d966ab9) extends route with access control groups - [`d6ab64c`](https://github.com/netbirdio/netbird/commit/d6ab64c76dd72d8f6ca33e40ce2541586c032aaa) add support for creating and updating routes with access control groups - [`00fd7d3`](https://github.com/netbirdio/netbird/commit/00fd7d3e863aabf10bb2b9144404665e43fa258c) Add access control groups to routes API request and response - [`cda9c7e`](https://github.com/netbirdio/netbird/commit/cda9c7e47cd71134c994c7be828473127edf001b) fix tests - [`17f6984`](https://github.com/netbirdio/netbird/commit/17f6984896a4384fc0e3b9238a71f9bf9bef4c59) fix tests ### 📊 Changes **10 files changed** (+224 additions, -127 deletions) <details> <summary>View changed files</summary> 📝 `management/server/account.go` (+1 -1) 📝 `management/server/account_test.go` (+4 -3) 📝 `management/server/http/api/openapi.yml` (+6 -0) 📝 `management/server/http/api/types.gen.go` (+6 -0) 📝 `management/server/http/routes_handler.go` (+14 -2) 📝 `management/server/http/routes_handler_test.go` (+53 -11) 📝 `management/server/mock_server/account_mock.go` (+3 -3) 📝 `management/server/route.go` (+16 -1) 📝 `management/server/route_test.go` (+94 -83) 📝 `route/route.go` (+27 -23) </details> ### 📄 Description ## Describe your changes ## Issue ticket number and link ### Checklist - [ ] Is it a bug fix - [ ] Is a typo/documentation fix - [x] Is a feature enhancement - [ ] It is a refactor - [ ] Created tests that fail without the change (if possible) - [ ] Extended the README / documentation, if necessary --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
saavagebueno added the pull-request label 2026-08-05 04:05:53 -04:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: DYNR/netbird#16229