Skip to content
Snippets Groups Projects
Commit 11678f1f authored by Cam Saul's avatar Cam Saul
Browse files

do batched hydration for annotation.creator

parent 72e62868
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,8 @@
[metabase.db :refer :all]
[metabase.models.hydrate :refer :all]
(metabase.models [annotation :refer [Annotation annotation-general annotation-description]]
[org :refer [Org]])
[org :refer [Org]]
[user :refer [User]])
[metabase.util :as util]))
......@@ -34,7 +35,7 @@
(sel :many Annotation :organization_id org :object_type_id object_model :object_id object_id (korma/order :start :DESC))
;; default is to return all annotations
(sel :many Annotation :organization_id org (korma/order :start :DESC)))
(hydrate :author)))
(simple-batched-hydrate User :author_id :author)))
(defendpoint POST "/" [:as {{:keys [organization start end title body annotation_type object_model object_id]
......
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