summaryrefslogtreecommitdiff
path: root/src/mongo/db/auth/authorization_session_impl.h
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2018-10-11 08:09:52 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2018-10-12 07:10:58 -0400
commitae2b60fce624cd9f4a95037316033b53846be176 (patch)
tree8cc0df2f5645baa710dd135c071f65b558c02320 /src/mongo/db/auth/authorization_session_impl.h
parent849c85561e065598813d6a702ce132f494380eed (diff)
downloadmongo-ae2b60fce624cd9f4a95037316033b53846be176.tar.gz
SERVER-37563 Remove all usages of getGlobalAuthorizationManager
Diffstat (limited to 'src/mongo/db/auth/authorization_session_impl.h')
-rw-r--r--src/mongo/db/auth/authorization_session_impl.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mongo/db/auth/authorization_session_impl.h b/src/mongo/db/auth/authorization_session_impl.h
index b0b6bb731d3..e28d7d1b34a 100644
--- a/src/mongo/db/auth/authorization_session_impl.h
+++ b/src/mongo/db/auth/authorization_session_impl.h
@@ -28,8 +28,6 @@
#pragma once
-#include "authorization_session.h"
-
#include <memory>
#include <string>
#include <vector>
@@ -38,7 +36,7 @@
#include "mongo/base/status.h"
#include "mongo/db/auth/action_set.h"
#include "mongo/db/auth/action_type.h"
-#include "mongo/db/auth/authorization_manager.h"
+#include "mongo/db/auth/authorization_session.h"
#include "mongo/db/auth/authz_session_external_state.h"
#include "mongo/db/auth/privilege.h"
#include "mongo/db/auth/user_name.h"
@@ -48,9 +46,9 @@
namespace mongo {
namespace auth {
-
struct CreateOrUpdateRoleArgs;
}
+
class Client;
/**