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

PUT /api/dash/:id

parent c1017dd8
No related branches found
No related tags found
No related merge requests found
(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)
......
......@@ -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)
......
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