summaryrefslogtreecommitdiff
path: root/adminbot.lisp
diff options
context:
space:
mode:
authorGrant Shangreaux <shshoshin@protonmail.com>2020-05-03 12:52:33 -0500
committerGrant Shangreaux <shshoshin@protonmail.com>2020-05-03 12:52:33 -0500
commit1fa6b622145975a38fea265155d53eb37634b8fc (patch)
tree1a2107694ce2ecfbab002f3ccaf5fc6af53cde8f /adminbot.lisp
parented2140fd7bb70c320c9040c3089534c671cb9c89 (diff)
Clean: remove shared secret from storing in hardcopyHEADmain
Diffstat (limited to 'adminbot.lisp')
-rw-r--r--adminbot.lisp3
1 files changed, 1 insertions, 2 deletions
diff --git a/adminbot.lisp b/adminbot.lisp
index 300d13b..dfbbb46 100644
--- a/adminbot.lisp
+++ b/adminbot.lisp
@@ -16,8 +16,7 @@
(defvar *adminbot* nil)
(defmethod hardcopy-plist append ((bot adminbot))
- (list 'registration-shared-secret (registration-shared-secret bot)
- 'known-users (known-users bot)))
+ (list 'known-users (known-users bot)))
(defun add-to-known-users (username client)
(push username (known-users client)))