1
0
mirror of https://github.com/anope/anope.git synced 2026-07-05 19:23:12 +02:00
Files
anope/modules/extra/webcpanel/pages/chanserv/drop.h
T
MatthewM 1075f3b457 Allow opers to drop channels
Added chanserv drop to web panel
Allow long lists of akills to scroll
2012-12-14 16:44:14 -05:00

26 lines
469 B
C++

/*
* (C) 2003-2012 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*/
namespace WebCPanel
{
namespace ChanServ
{
class Drop : public WebPanelProtectedPage
{
public:
Drop(const Anope::string &cat, const Anope::string &u);
bool OnRequest(HTTPProvider *, const Anope::string &, HTTPClient *, HTTPMessage &, HTTPReply &, NickAlias *, TemplateFileServer::Replacements &) anope_override;
};
}
}