Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions
Allow company owners, managers, and admins to hide specific profile sections from visitors. Hidden sections remain visible to authorized users with a "Ukryta" badge. Includes migration, API endpoint, edit UI tab, and conditional rendering for all 15 profile sections. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
8 lines
314 B
SQL
8 lines
314 B
SQL
-- Migration 069: Add hidden_sections column to companies table
|
|
-- Allows company owners/managers to hide specific profile sections from visitors
|
|
|
|
ALTER TABLE companies ADD COLUMN IF NOT EXISTS hidden_sections JSONB NOT NULL DEFAULT '[]'::jsonb;
|
|
|
|
-- Grant permissions
|
|
GRANT ALL ON TABLE companies TO nordabiz_app;
|