Skip to content
Snippets Groups Projects
Commit c32c247b authored by Cam Saül's avatar Cam Saül
Browse files

Fix wrong dates in revision history :wrench:

parent 3761a9df
No related branches found
No related tags found
No related merge requests found
......@@ -60,11 +60,14 @@
(i/defentity Revision :revision)
(defn- pre-insert [revision]
(assoc revision :timestamp (u/new-sql-timestamp)))
(u/strict-extend (class Revision)
i/IEntity
(merge i/IEntityDefaults
{:types (constantly {:object :json, :message :clob})
:pre-insert (u/rpartial assoc :timestamp (u/new-sql-timestamp))
:pre-insert pre-insert
:pre-update (fn [& _] (throw (Exception. "You cannot update a Revision!")))}))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment