mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 06:31:13 -05:00
6 lines
253 B
SQL
6 lines
253 B
SQL
-- Add policy to allow authenticated users to read Novu application identifier
|
|
CREATE POLICY "Authenticated users can read novu application identifier"
|
|
ON admin_settings
|
|
FOR SELECT
|
|
TO authenticated
|
|
USING (setting_key = 'novu.application_identifier'); |