Skip to content
Snippets Groups Projects
Unverified Commit 8eeacc60 authored by metamben's avatar metamben Committed by GitHub
Browse files

Hydrate can_run_adhoc_query and address review comments (#43747)

This is a followup on #43625.
parent b8907454
No related branches found
No related tags found
No related merge requests found
......@@ -24,12 +24,8 @@
(defn- partition-table-ids
[ids]
(reduce (fn [acc id]
(if-let [card-id (lib.util/legacy-string-table-id->card-id id)]
(update acc :card-ids conj card-id)
(update acc :table-ids conj id)))
{:card-ids [] :table-ids []}
ids))
{:card-ids (keep lib.util/legacy-string-table-id->card-id ids)
:table-ids (remove lib.util/legacy-string-table-id->card-id ids)})
(defn- metadata-for-table-dependents
[table-dependents]
......@@ -106,7 +102,7 @@
:creator
:dashboard_count
:can_write
#_:can_run_adhoc_query
:can_run_adhoc_query
:average_query_time
:last_query_start
:parameter_usage_count
......
......@@ -60,9 +60,7 @@
[:= :r.model (model->db-model model)]
[:in :r.model_id ids]]}))]
(map (fn [item]
(let [updated-info (-> item :id id->updated-info)]
(cond-> item
updated-info (assoc :last-edit-info updated-info))))
(m/assoc-some item :last-edit-info (-> item :id id->updated-info)))
items))))))
(mu/defn edit-information-for-user :- LastEditInfo
......
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