diff options
author | Sadie Powell <sadie@witchery.services> | 2023-07-11 12:19:47 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2023-07-11 12:19:47 +0100 |
commit | b7458c5da1dc952a29c39fc7c72cbde44ace004f (patch) | |
tree | 154f25bc6474b5e08f41ccd8dd74e7388ec370e2 /include/access.h | |
parent | 4a6f4bc92fbf447c2aea52df78814514e7e3d60b (diff) |
Allow access list entries to have a description.
This is useful when adding glob matches to the access list as a
reminder of who they actually match.
Resolves https://bugs.anope.org/view.php?id=1613
Diffstat (limited to 'include/access.h')
-rw-r--r-- | include/access.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/access.h b/include/access.h index 842dcb78a..f22e098bf 100644 --- a/include/access.h +++ b/include/access.h @@ -84,6 +84,7 @@ class CoreExport ChanAccess : public Serializable /* Channel this access entry is on */ Serialize::Reference<ChannelInfo> ci; Anope::string creator; + Anope::string description; time_t last_seen; time_t created; |