Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
eabcfdc8
Commit
eabcfdc8
authored
10 years ago
by
Allen Gilliland
Browse files
Options
Downloads
Patches
Plain Diff
add a couple of conveniences to emailreport and emailreport-executions models.
parent
c35c061f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/metabase/models/emailreport.clj
+14
-0
14 additions, 0 deletions
src/metabase/models/emailreport.clj
src/metabase/models/emailreport_executions.clj
+6
-2
6 additions, 2 deletions
src/metabase/models/emailreport_executions.clj
with
20 additions
and
2 deletions
src/metabase/models/emailreport.clj
+
14
−
0
View file @
eabcfdc8
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/metabase/models/emailreport_executions.clj
+
6
−
2
View file @
eabcfdc8
(
ns
metabase.models.emailreport-executions
(
:require
[
c
lojure.data.json
:as
json
]
(
:require
[
c
heshire.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
))))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment