- Implemented a comprehensive end-to-end testing script for the Sag module's HTTP API, covering various functionalities including case creation, updates, and file uploads. - Introduced a safe HTML sanitizer utility to ensure safe rendering of HTML content in the BMC Hub UI. - Added database migrations for new features including WAN connection marking for wall outlets, permanent audit trails for supplier invoices, and dedicated permissions for the Sag module. - Created a migration center for manual subscription and invoice migrations with relevant tables and indexes. - Added tests for migration center functionalities, ensuring stability and correctness of the new features.
7 lines
441 B
SQL
7 lines
441 B
SQL
INSERT INTO settings (key, value, category, description, value_type, is_public)
|
|
VALUES
|
|
('mattermost_reminders_enabled', 'false', 'notifications', 'Send reminders to Mattermost', 'boolean', false),
|
|
('mattermost_webhook_url', '', 'notifications', 'Mattermost incoming webhook URL', 'string', false),
|
|
('mattermost_channel', '', 'notifications', 'Optional Mattermost channel override', 'string', false)
|
|
ON CONFLICT (key) DO NOTHING;
|