diff options
author | Austin Ellis <siniStar@IRC4Fun.net> | 2022-09-22 11:38:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-22 17:38:07 +0100 |
commit | 32679a107a2e893dfd32ad963a44b6ca576a91cb (patch) | |
tree | 607692746ab838a74687af3fb1faf8afb2f32d9d /modules/webcpanel/pages/nickserv/confirm.h | |
parent | bc101d10de7c2a8cfd8f8ec2b283bf475caa63b8 (diff) |
Add the ability to confirm accounts via webcpanel after logging in.
Diffstat (limited to 'modules/webcpanel/pages/nickserv/confirm.h')
-rw-r--r-- | modules/webcpanel/pages/nickserv/confirm.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/webcpanel/pages/nickserv/confirm.h b/modules/webcpanel/pages/nickserv/confirm.h new file mode 100644 index 000000000..6b0744a76 --- /dev/null +++ b/modules/webcpanel/pages/nickserv/confirm.h @@ -0,0 +1,24 @@ +/* + * (C) 2003-2022 Anope Team + * Contact us at team@anope.org + * + * Please read COPYING and README for further details. + */ + +namespace WebCPanel +{ + +namespace NickServ +{ + +class Confirm : public WebPanelProtectedPage +{ + public: + Confirm(const Anope::string &cat, const Anope::string &u); + + bool OnRequest(HTTPProvider *, const Anope::string &, HTTPClient *, HTTPMessage &, HTTPReply &, NickAlias *, TemplateFileServer::Replacements &) anope_override; +}; + +} + +} |