aboutsummaryrefslogtreecommitdiffstats
path: root/.mongorc.js
diff options
context:
space:
mode:
Diffstat (limited to '.mongorc.js')
-rw-r--r--.mongorc.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/.mongorc.js b/.mongorc.js
new file mode 100644
index 0000000..43424dd
--- /dev/null
+++ b/.mongorc.js
@@ -0,0 +1,17 @@
+function prompt() {
+
+ var username = "";
+ var user = db.runCommand({
+ connectionStatus: 1
+ }).authInfo.authenticatedUsers[0];
+
+ if (!!user) {
+ username = user.user;
+ } else {
+ username = "anonymous";
+ }
+
+ var database = db.getName();
+
+ return `${username}:${database} >`;
+}