diff options
author | Thomas Fargeix <t.fargeix@gmail.com> | 2014-10-11 22:56:31 +0200 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-10-12 10:52:48 -0400 |
commit | 96583892c6a0bc48029348ddcf86b1afc5a9915d (patch) | |
tree | a232b6a1dcbc2a5b0ad839b9a14b9a85e6645549 /modules/commands/cs_access.cpp | |
parent | 0991d4e1998c5a87c8deb3f9460685eed0212160 (diff) |
Add a chanserv/access/list privilege
Replace the existing chanserv/access/list command access,
only used in cs_xop, by a privilege with the same name.
It which allows read-only access to cs_access, cs_flags, cs_xop
and cs_akick, while the already-existing chanserv/access/modify
privilege allows to modify them.
Diffstat (limited to 'modules/commands/cs_access.cpp')
-rw-r--r-- | modules/commands/cs_access.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/commands/cs_access.cpp b/modules/commands/cs_access.cpp index d5f934862..309105998 100644 --- a/modules/commands/cs_access.cpp +++ b/modules/commands/cs_access.cpp @@ -518,6 +518,8 @@ class CommandCSAccess : public Command bool has_access = false; if (source.HasPriv("chanserv/access/modify")) has_access = true; + else if (is_list && source.HasPriv("chanserv/access/list")) + has_access = true; else if (is_list && source.AccessFor(ci).HasPriv("ACCESS_LIST")) has_access = true; else if (source.AccessFor(ci).HasPriv("ACCESS_CHANGE")) |