summaryrefslogtreecommitdiff
path: root/adminbot.asd
diff options
context:
space:
mode:
authorGrant Shangreaux <shshoshin@protonmail.com>2020-04-30 10:10:33 -0500
committerGrant Shangreaux <shshoshin@protonmail.com>2020-04-30 10:10:33 -0500
commiteb0cf5e42624ea7c915b851e3f9df5bbf9adbc4a (patch)
treebb94be1dadeec5f2e7a7ae6210b24fabeb4c30de /adminbot.asd
parent5ec161766e6127c0f52563df07c7a7b9e070461b (diff)
Feature: adminbot alpha - new user registration
uses the admin registration endpoint to perform user registration given the command "!invite <username>" - validates usernames and complete user-id - requires the registration shared secret to work - does not limit invites at all yet
Diffstat (limited to 'adminbot.asd')
-rw-r--r--adminbot.asd11
1 files changed, 11 insertions, 0 deletions
diff --git a/adminbot.asd b/adminbot.asd
new file mode 100644
index 0000000..672ae5f
--- /dev/null
+++ b/adminbot.asd
@@ -0,0 +1,11 @@
+;;;; adminbot.asd
+
+(asdf:defsystem #:adminbot
+ :description "A Matrix bot to do admin tasks."
+ :author "Shoshin <shshoshin@protonmail.com>"
+ :license "AGPL"
+ :version "0.0.1"
+ :serial t
+ :depends-on (#:granolin #:ironclad #:cl-ppcre)
+ :components ((:file "package")
+ (:file "adminbot")))