diff options
author | rwalli <rwalli@gmx.net> | 2018-07-08 19:46:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-08 19:46:10 +0200 |
commit | 140f41b40f54feb4fb8d6ddbbdf3c659c779756d (patch) | |
tree | e6691406575168a346e4e0f9a7054b333f00d6cf /protocols | |
parent | d35be37b889b1bc9c2edaf568cc2203824dd498b (diff) |
Add description
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua b/protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua index 056f6a6e7..64e256a51 100644 --- a/protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua +++ b/protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua @@ -5,7 +5,7 @@ local map, section, net = ... local ifname = net:get_interface():name() local private_key, listen_port -local metric, mtu, preshared_key +local metric, mtu, preshared_key, description local peers, public_key, allowed_ips, endpoint, persistent_keepalive @@ -96,6 +96,16 @@ peers.anonymous = true peers.addremove = true +description = peers:option( + Value, + "description", + translate("Description"), + translate("Optional. Description of peer.")) +description.placeholder = "My Peer" +description.datatype = "string" +description.optional = true + + public_key = peers:option( Value, "public_key", |