summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/user_management_commands.h
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-32277 Remove MONGODB-CR -> SCRAM-SHA-1 upgradeSara Golemon2017-12-181-2/+0
|
* SERVER-25488 merge ClientBasic and ClientKyle Suarez2016-08-081-21/+21
|
* SERVER-19721 Restore the authSchemaUpgrade commandAndreas Nilsson2015-09-081-0/+1
| | | | Fixed mongos rebase error for catalogManager(txn)
* Revert "SERVER-20134 Restore the authSchemaUpgrade command"matt dannenberg2015-09-081-1/+0
| | | | This reverts commit 7a3fa1f56d9cb121cae4d854f6ded2a12793077b.
* SERVER-20134 Restore the authSchemaUpgrade commandAndreas Nilsson2015-09-071-0/+1
|
* SERVER-18579: Clang-Format - reformat code, no comment reflowMark Benvenuto2015-06-201-78/+75
|
* SERVER-18478 Clean up AuthzManagerExternalStateDaniel Alabi2015-05-211-50/+0
| | | | Removed insert/remove/update from the AuthzManagerExternalState* interfaces
* SERVER-18328 Create mongos version of user management commands that uses ↵Daniel Alabi2015-05-131-0/+199
| | | | catalog manager
* SERVER-17412 removed authSchemaUpgrade commandBenety Goh2015-02-271-50/+0
|
* Revert "SERVER-13961 Pass LockState to DBWrite and DBRead directly"Kaloian Manassiev2014-05-281-2/+1
| | | | This reverts commit 0672061deb58aac931912bed68d014247c581968.
* SERVER-13961 Pass LockState to DBWrite and DBRead directlyKaloian Manassiev2014-05-281-1/+2
| | | | | This is part of the changes to move LockState be part of OperationContext and not retrieved from TLS.
* SERVER-13256: Remove pch - qualify std in headersMark Benvenuto2014-05-191-1/+1
|
* SERVER-13498 Get rid of LockStatusKaloian Manassiev2014-04-151-1/+1
| | | | | | This change removes all usages of LockStatus and pushes the lock acquisitions to be inside the respective commands. This is a refactoring on the way to per-document locking.
* SERVER-11995 Have authSchemaUpgrade sent to a mongos upgrade auth schema ↵Andy Schwerin2014-01-101-0/+50
everywhere. In particular, sends the commands to each shard, as well as performing the upgrade on the config servers. Also, allow user to specify maximum number of upgrade steps to take on any given shard. Defaults to "as many as necessary". To achieve these changes, separate implementations of the upgrade command are provided to mongos and mognod.