From 22c8b6be0843120e6a2a28fc4ee01936d3155799 Mon Sep 17 00:00:00 2001 From: Alexander Steshuk Date: Tue, 11 Feb 2020 11:33:55 +0200 Subject: [PATCH] Update db_schema_whitelist.json --- Notifier/etc/db_schema_whitelist.json | 8 ++++++++ NotifierAsync/etc/db_schema_whitelist.json | 4 ++++ NotifierEvent/etc/db_schema_whitelist.json | 19 +++++++++++++++++++ NotifierTemplate/etc/db_schema_whitelist.json | 7 +++++++ 4 files changed, 38 insertions(+) create mode 100644 NotifierEvent/etc/db_schema_whitelist.json diff --git a/Notifier/etc/db_schema_whitelist.json b/Notifier/etc/db_schema_whitelist.json index ea17fe3d..3148f6ee 100644 --- a/Notifier/etc/db_schema_whitelist.json +++ b/Notifier/etc/db_schema_whitelist.json @@ -3,6 +3,14 @@ "constraint": { "PRIMARY": true, "NOTIFIER_CHANNEL_CODE": true + }, + "column": { + "channel_id": true, + "name": true, + "adapter_code": true, + "code": true, + "configuration_json": true, + "enabled": true } }, "notifier_event_rule": { diff --git a/NotifierAsync/etc/db_schema_whitelist.json b/NotifierAsync/etc/db_schema_whitelist.json index 19eefc45..ef18704d 100644 --- a/NotifierAsync/etc/db_schema_whitelist.json +++ b/NotifierAsync/etc/db_schema_whitelist.json @@ -3,6 +3,10 @@ "constraint": { "NOTIFIER_ASYNC_CHANNEL_CHANNEL_ID": true, "NOTIFIER_ASYNC_CHANNEL_CHANNEL_ID_NOTIFIER_CHANNEL_CHANNEL_ID": true + }, + "column": { + "channel_id": true, + "send_async": true } } } diff --git a/NotifierEvent/etc/db_schema_whitelist.json b/NotifierEvent/etc/db_schema_whitelist.json new file mode 100644 index 00000000..a461303c --- /dev/null +++ b/NotifierEvent/etc/db_schema_whitelist.json @@ -0,0 +1,19 @@ +{ + "notifier_event_rule": { + "column": { + "rule_id": true, + "name": true, + "events": true, + "template_id": true, + "channels_codes": true, + "throttle_limit": true, + "throttle_interval": true, + "last_fired_at": true, + "fire_count": true, + "enabled": true + }, + "constraint": { + "PRIMARY": true + } + } +} \ No newline at end of file diff --git a/NotifierTemplate/etc/db_schema_whitelist.json b/NotifierTemplate/etc/db_schema_whitelist.json index 0d9141c4..19d9eb7e 100644 --- a/NotifierTemplate/etc/db_schema_whitelist.json +++ b/NotifierTemplate/etc/db_schema_whitelist.json @@ -3,6 +3,13 @@ "constraint": { "PRIMARY": true, "NOTIFIER_TEMPLATE_CODE_ADAPTER_CODE": true + }, + "column": { + "template_id": true, + "name": true, + "adapter_code": true, + "code": true, + "template": true } } }