diff options
| author | ckonstanski <kostcarl@isu.edu> | 2026-08-18 20:00:23 -0600 |
|---|---|---|
| committer | ckonstanski <kostcarl@isu.edu> | 2026-08-18 20:00:23 -0600 |
| commit | 26a106b0d9687be8448e37658887c8bc2937804e (patch) | |
| tree | c13e2b04583802f7e3c407dc9a7c9f945cc15bfb /lisp/service/contact-us-service.lisp | |
| parent | c3b8f1326a874ae08b394020c6279237b0413293 (diff) | |
notification cleanup and message marking
Diffstat (limited to 'lisp/service/contact-us-service.lisp')
| -rw-r--r-- | lisp/service/contact-us-service.lisp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/service/contact-us-service.lisp b/lisp/service/contact-us-service.lisp index 1e55ddb..d97d74c 100644 --- a/lisp/service/contact-us-service.lisp +++ b/lisp/service/contact-us-service.lisp @@ -78,10 +78,10 @@ :reply-to (mail-postmaster *webapp*) :ssl (mail-ssl *webapp*) :authentication (mail-authentication *webapp*)) - (setf (session-value :message) "Form submitted successfully.")) + (setf (message instance) "Form submitted successfully.")) (error (e) (declare (ignore e)) - (setf (session-value :errormsg) "Error submitting form."))))))) + (setf (errormsg instance) "Error submitting form."))))))) (define-endpoint ("/contact-us" :method :get) () contact-us-json) (define-endpoint ("/contact-us/view" :method :get) () contact-us-view-json) |
