Add nitrate advanced permissions for move teams

This commit is contained in:
María Valderrama
2026-05-14 19:32:20 +02:00
parent 637ff3005a
commit 1e9c90ef1c

View File

@@ -1393,6 +1393,14 @@
(filter :organization)
(map dtm/team->organization)))
current-organization-id (dm/get-in team [:organization :id])
can-change-organization? (mf/with-memo [all-organizations current-organization-id]
(->> all-organizations
(remove #(= (:id %) current-organization-id))
seq
some?))
;; Filter to orgs where user is allowed to create/add teams
organizations (mf/with-memo [all-organizations profile-id]
(->> all-organizations