1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 18:36:38 +02:00

Added hostserv/del command permission, fixed example.conf to show that hostserv/* is a command, not a permission

This commit is contained in:
Adam
2010-07-26 20:15:38 -04:00
parent d2b34c45c3
commit 2a79be7f91
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -593,7 +593,7 @@ options
* nickserv/getpass nickserv/sendpass nickserv/getemail nickserv/suspend
* nickserv/resetpass
*
* hostserv/set - Can add/modify/delete any vhost
* hostserv/set hostserv/del
*
* operserv/global operserv/news operserv/stats operserv/kick
* operserv/mode operserv/session operserv/modlist operserv/ignore
@@ -633,7 +633,7 @@ opertype
opertype
{
name = "Helper"
privs = "hostserv/set"
privs = "hostserv/*"
}
/*
+1 -1
View File
@@ -18,7 +18,7 @@
class CommandHSDel : public Command
{
public:
CommandHSDel() : Command("DEL", 1, 1, "hostserv/set")
CommandHSDel() : Command("DEL", 1, 1, "hostserv/del")
{
}
+1 -1
View File
@@ -18,7 +18,7 @@
class CommandHSDelAll : public Command
{
public:
CommandHSDelAll() : Command("DELALL", 1, 1, "hostserv/set")
CommandHSDelAll() : Command("DELALL", 1, 1, "hostserv/del")
{
}