From ce470567c4421da7d073685cf845fdc4448aadc0 Mon Sep 17 00:00:00 2001 From: colin Date: Wed, 19 Jun 2024 13:13:42 -0700 Subject: Rename classes with convention --- site/home.lisp | 2 +- site/invites.lisp | 8 ++++---- site/login.lisp | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/site/home.lisp b/site/home.lisp index c8fe9d1..47d0f17 100644 --- a/site/home.lisp +++ b/site/home.lisp @@ -9,7 +9,7 @@ (:h1 "hey " (user-name user)) (:br) (:div - (:form :method "POST" :action "/invites" + (:form :method "POST" :action (wknd:route-to 'create.invite) (:p "Initiate an invitation...") (:button :type "submit" "Bite Someone"))) (:br) diff --git a/site/invites.lisp b/site/invites.lisp index dc1f31c..dab6a1b 100644 --- a/site/invites.lisp +++ b/site/invites.lisp @@ -1,6 +1,6 @@ (in-package #:vampire) -(wknd:defendpoint invites +(wknd:defendpoint create.invite :using user-known :post :to "invites" :handle @@ -14,7 +14,7 @@ (or (plusp uses) (null uses)))) -(wknd:defendpoint create-new-account +(wknd:defendpoint create.user :post :to "new-account" :parameters (username string) @@ -26,7 +26,7 @@ :authenticate (and (equal password password2) (setf invite (object-with-key invite-code))) - :authorize (invite-validp invite) + :authorize (invite-valid-p invite) :handle (progn (db:with-transaction () (when (uses-remaining invite) @@ -44,7 +44,7 @@ (defun new-account-page () (page (:title "V A M P I R E ~ JOIN") - (:form :method "POST" :action (wknd:route-to 'create-new-account) + (:form :method "POST" :action (wknd:route-to 'create.user) (:input :placeholder "Invite Code" :name "invite-code")(:br) (:input :placeholder "Username" :name "username")(:br) (:input :placeholder "Password" :name "password" :type "password")(:br) diff --git a/site/login.lisp b/site/login.lisp index 3f7e8fa..d859e0d 100644 --- a/site/login.lisp +++ b/site/login.lisp @@ -5,7 +5,7 @@ :returns "text/html" :handle (login-page)) -(wknd:defendpoint login-user +(wknd:defendpoint login.user :post :route "login" :parameters (name string) @@ -26,7 +26,7 @@ (defun login-page () (page (:title "V A M P I R E ~ LOGIN") (:div (:h1 "I vant to suck your blood") - (:form :method "POST" :action (wknd:route-to 'login-user) + (:form :method "POST" :action (wknd:route-to 'login.user) (:input :placeholder "Name" :name "name") (:br) (:input :placeholder "Password" :type "password" :name "password") -- cgit v1.2.3