From 1fa6b622145975a38fea265155d53eb37634b8fc Mon Sep 17 00:00:00 2001 From: Grant Shangreaux Date: Sun, 3 May 2020 12:52:33 -0500 Subject: Clean: remove shared secret from storing in hardcopy --- adminbot.asd | 2 +- adminbot.lisp | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/adminbot.asd b/adminbot.asd index 2b7d468..7c26405 100644 --- a/adminbot.asd +++ b/adminbot.asd @@ -4,7 +4,7 @@ :description "A Matrix bot to do admin tasks." :author "Shoshin " :license "AGPL" - :version "0.1.0" + :version "0.1.1" :serial t :depends-on (#:granolin #:ironclad #:cl-ppcre) :components ((:file "package") 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))) -- cgit v1.2.3