mirror of
https://github.com/renee-png/acmcc.git
synced 2026-06-21 09:50:01 +00:00
183fe0a93c
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
5 lines
194 B
SQL
5 lines
194 B
SQL
CREATE POLICY "Board members can view estoppels for their associations"
|
|
ON public.estoppels
|
|
FOR SELECT
|
|
TO authenticated
|
|
USING (public.is_board_member_of_association(auth.uid(), association_id)); |