summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/authorization_checks.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/auth/authorization_checks.h')
-rw-r--r--src/mongo/db/auth/authorization_checks.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mongo/db/auth/authorization_checks.h b/src/mongo/db/auth/authorization_checks.h
index 326722c6a5b..4a211fb0ee1 100644
--- a/src/mongo/db/auth/authorization_checks.h
+++ b/src/mongo/db/auth/authorization_checks.h
@@ -90,13 +90,15 @@ StatusWith<PrivilegeVector> getPrivilegesForAggregate(AuthorizationSession* auth
// Checks if this connection has the privileges necessary to create 'ns' with the options
// supplied in 'cmdObj' either directly on mongoD or via mongoS.
-Status checkAuthForCreate(AuthorizationSession* authSession,
+Status checkAuthForCreate(OperationContext* opCtx,
+ AuthorizationSession* authSession,
const CreateCommand& cmd,
bool isMongos);
// Checks if this connection has the privileges necessary to modify 'ns' with the options
// supplied in 'cmdObj' either directly on mongoD or via mongoS.
-Status checkAuthForCollMod(AuthorizationSession* authSession,
+Status checkAuthForCollMod(OperationContext* opCtx,
+ AuthorizationSession* authSession,
const NamespaceString& ns,
const BSONObj& cmdObj,
bool isMongos);