Skip to content
Snippets Groups Projects
Commit eabcfdc8 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

add a couple of conveniences to emailreport and emailreport-executions models.

parent c35c061f
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,20 @@
(defentity EmailReport
(table :report_emailreport))
(def execution-details-fields [EmailReport
:id
:organization_id
:creator_id
:name
:description
:mode
:public_perms
:version
:dataset_query
:schedule
:created_at
:updated_at
:email_addresses])
(defmethod pre-insert EmailReport [_ {:keys [dataset_query schedule] :as report}]
(let [defaults {:public_perms perms-none
......
(ns metabase.models.emailreport-executions
(:require [clojure.data.json :as json]
(:require [cheshire.core :as json]
[korma.core :refer :all]
[metabase.api.common :refer [check]]
[metabase.db :refer :all]
......@@ -20,4 +20,8 @@
(realize-json :details)
(util/assoc*
:organization (delay
(sel :one Org :id organization_id)))))
\ No newline at end of file
(sel :one Org :id organization_id)))))
(defmethod pre-insert EmailReportExecutions [_ {:keys [details] :as execution}]
(assoc execution :details (if (string? details) details
(json/encode details))))
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