Once entered, descriptions are stored in the database. The following f-n then serves them on the frontend:
(defn descriptions-by-user [userid name]
(with-db
sql/with-query-results
res ["select description from images where userid = ? and name = ?" userid name] (doall res)))
11
Once entered, descriptions are stored in the database. The following f-n then serves them on the frontend: