|
|
@@ -34,16 +34,16 @@
|
|
|
(title (subseq cmd 10 title-end))
|
|
|
(body (subseq cmd (+ title-end 2)))
|
|
|
(posting
|
|
|
- (pomo:make-dao 'assboard.data::posting
|
|
|
+ (pomo:make-dao 'data::posting
|
|
|
:author author
|
|
|
:title title
|
|
|
:body body))
|
|
|
(posting-edition
|
|
|
- (pomo:make-dao 'assboard.data::posting-edition
|
|
|
- :posting-id (assboard.data::posting-id posting)
|
|
|
+ (pomo:make-dao 'data::posting-edition
|
|
|
+ :posting-id (data::posting-id posting)
|
|
|
:title title
|
|
|
:body body
|
|
|
- :raw-id (assboard.data::raw-id raw))))
|
|
|
+ :raw-id (data::raw-id raw))))
|
|
|
(values posting posting-edition)))
|
|
|
|
|
|
(defun cmd/close-post (cmd raw))
|
|
|
@@ -84,7 +84,7 @@
|
|
|
*command-valid-for*)
|
|
|
(error 'not-valid-timestamp-error))
|
|
|
;; All checks performed, store raw command text and process it
|
|
|
- (let ((raw (pomo:make-dao 'assboard.data::raw
|
|
|
+ (let ((raw (pomo:make-dao 'data::raw
|
|
|
:clearsigned clearsigned
|
|
|
:fingerprint fgp
|
|
|
:timestamp timestamp)))
|