mirror of
https://github.com/renee-png/acmcc.git
synced 2026-06-21 01:40:01 +00:00
183fe0a93c
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
11 lines
282 B
SQL
11 lines
282 B
SQL
CREATE POLICY "Public can view associations with published page"
|
|
ON public.associations
|
|
FOR SELECT
|
|
TO anon, authenticated
|
|
USING (
|
|
EXISTS (
|
|
SELECT 1 FROM public.association_public_pages app
|
|
WHERE app.association_id = associations.id
|
|
AND app.is_published = true
|
|
)
|
|
); |