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
e8114c72
Commit
e8114c72
authored
10 years ago
by
Cam Saul
Browse files
Options
Downloads
Patches
Plain Diff
PUT /api/dash/:id
parent
c1017dd8
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/api/dash.clj
+6
-1
6 additions, 1 deletion
src/metabase/api/dash.clj
src/metabase/models/dashboard.clj
+4
-0
4 additions, 0 deletions
src/metabase/models/dashboard.clj
with
10 additions
and
1 deletion
src/metabase/api/dash.clj
+
6
−
1
View file @
e8114c72
(
ns
metabase.api.dash
"/api/meta/dash endpoints."
(
:require
[
compojure.core
:refer
[
GET
POST
DELETE
]]
(
:require
[
compojure.core
:refer
[
GET
POST
PUT
DELETE
]]
[
medley.core
:as
medley
]
[
metabase.api.common
:refer
:all
]
[
metabase.db
:refer
:all
]
...
...
@@ -32,6 +32,11 @@
(
hydrate
:creator
:organization
[
:ordered_cards
[
:card
:creator
]]
:can_read
:can_write
))]
{
:dashboard
db
}))
; why is this returned with this {:dashboard} wrapper?
(
defendpoint
PUT
"/:id"
[
id
:as
{{
:keys
[
description
name
public_perms
]}
:body
}]
(
let-404
[{
:keys
[
can_write
]}
(
sel
:one
Dashboard
:id
id
)]
(
check-403
@
can_write
))
(
upd
Dashboard
id
:description
description
:name
name
:public_perms
public_perms
))
(
defendpoint
DELETE
"/:id"
[
id
]
(
let-404
[{
:keys
[
can_write
]}
(
sel
:one
Dashboard
:id
id
)]
(
check-403
@
can_write
)
...
...
This diff is collapsed.
Click to expand it.
src/metabase/models/dashboard.clj
+
4
−
0
View file @
e8114c72
...
...
@@ -15,6 +15,10 @@
:updated_at
(
util/new-sql-date
)}]
(
merge
defaults
dashboard
)))
(
defmethod
pre-update
Dashboard
[
_
dashboard
]
(
assoc
dashboard
:updated_at
(
util/new-sql-date
)))
(
defmethod
post-select
Dashboard
[
_
{
:keys
[
id
creator_id
organization_id
]
:as
dash
}]
(
->
dash
(
assoc
:creator
(
sel-fn
:one
User
:id
creator_id
)
...
...
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