summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/authentication_commands.h
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2017-06-22 15:25:37 -0400
committerMathias Stearn <mathias@10gen.com>2017-07-13 16:53:12 -0400
commit1f21d889f89cf1338ff198264d63b029314eef7a (patch)
tree741021d15b7b2149b28c8eb84369350d8c9a34d8 /src/mongo/db/commands/authentication_commands.h
parenta6cc94d141f13feff33178a769c81282c7bc0170 (diff)
downloadmongo-1f21d889f89cf1338ff198264d63b029314eef7a.tar.gz
SERVER-29731 convert all direct subclasses of Command to BasicCommand
Diffstat (limited to 'src/mongo/db/commands/authentication_commands.h')
-rw-r--r--src/mongo/db/commands/authentication_commands.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/commands/authentication_commands.h b/src/mongo/db/commands/authentication_commands.h
index f6b0c66e147..5bb01ad9fae 100644
--- a/src/mongo/db/commands/authentication_commands.h
+++ b/src/mongo/db/commands/authentication_commands.h
@@ -36,7 +36,7 @@
namespace mongo {
-class CmdAuthenticate : public Command {
+class CmdAuthenticate : public BasicCommand {
public:
static void disableAuthMechanism(std::string authMechanism);
@@ -54,7 +54,7 @@ public:
std::vector<Privilege>* out) {} // No auth required
virtual void redactForLogging(mutablebson::Document* cmdObj);
- CmdAuthenticate() : Command("authenticate") {}
+ CmdAuthenticate() : BasicCommand("authenticate") {}
bool run(OperationContext* opCtx,
const std::string& dbname,
const BSONObj& cmdObj,