mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2026-04-25 01:15:51 +03:00
[PR #5333] feat(access-list): add optional note field to access list clients #4176
Labels
No labels
awaiting feedback
bug
cannot reproduce
dns provider request
duplicate
enhancement
enhancement
enhancement
good first issue
help wanted
invalid
need more info
no certbot plugin available
product-support
pull-request
question
stale
troll
upstream issue
v2
v2
v2
v3
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/nginx-proxy-manager-NginxProxyManager#4176
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/NginxProxyManager/nginx-proxy-manager/pull/5333
Author: @TheMazeIsAmazing
Created: 2/20/2026
Status: 🔄 Open
Base:
develop← Head:develop📝 Commits (1)
213e995feat(access-list): add optional note field to access list clients and widen modal📊 Changes
11 files changed (+88 additions, -9 deletions)
View changed files
📝
backend/internal/access-list.js(+2 -0)📝
backend/lib/utils.js(+12 -4)➕
backend/migrations/20260220111310_access_list_client_note.js(+36 -0)📝
backend/schema/common.json(+13 -2)📝
backend/schema/paths/nginx/access-lists/listID/put.json(+2 -1)📝
backend/schema/paths/nginx/access-lists/post.json(+3 -1)📝
frontend/src/App.css(+4 -0)📝
frontend/src/api/backend/models.ts(+1 -0)📝
frontend/src/components/Form/AccessClientFields.tsx(+10 -0)📝
frontend/src/locale/src/en.json(+3 -0)📝
frontend/src/modals/AccessListModal.tsx(+2 -1)📄 Description
Based on my earlier Feature Request, nr. 5277, I thought I might take a jab at it myself.
This PR introduces an optional “note” field for access list client rules to improve clarity when managing multiple IP entries. It allows users to annotate each rule (e.g. “Home”, “Office”, “VPN”) without affecting nginx behaviour.
Backend changes:
noteproperty to access list client schema.note.notefully optional and backwards-compatible with existing data.Frontend changes:
AccessListClienttype withnote?: string.notein API payload only when non-empty.If something is broken, or needs to be fixed, let me know. Thanks for your time!
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.