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

DELETE /api/dash/:id/cards

parent 7532cc8c
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,11 @@
(check (exists? Card :id cardId) 400 (format "Card %d doesn't exist." cardId))
(ins DashboardCard :card_id cardId :dashboard_id id))
(defendpoint DELETE "/:id/cards" [id dashcardId]
(let-404 [{:keys [can_write]} (sel :one Dashboard :id id)]
(check-403 @can_write))
(del DashboardCard :id dashcardId :dashboard_id id))
(defendpoint POST "/:id/reposition" [id :as {{:keys [cards]} :body}]
(let-404 [{:keys [can_write]} (sel :one Dashboard :id id)]
(check-403 @can_write))
......
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