Spaces:
Runtime error
Runtime error
Upload db.py
#1
by pmrony - opened
db.py
CHANGED
|
@@ -53,7 +53,7 @@ async def setup_database(pool):
|
|
| 53 |
anti_duplicate BOOLEAN DEFAULT FALSE, max_message_length INTEGER DEFAULT 0,
|
| 54 |
auto_delete_seconds INTEGER DEFAULT 0, delete_join_messages BOOLEAN DEFAULT TRUE,
|
| 55 |
block_channel_forwards BOOLEAN DEFAULT TRUE, enable_spamscan BOOLEAN DEFAULT FALSE,
|
| 56 |
-
|
| 57 |
allow_admins_manage BOOLEAN DEFAULT FALSE,
|
| 58 |
block_bio_links BOOLEAN DEFAULT TRUE, enable_ocr_scan BOOLEAN DEFAULT FALSE,
|
| 59 |
allow_usernames BOOLEAN DEFAULT FALSE, welcome_data JSONB DEFAULT NULL,
|
|
@@ -287,7 +287,7 @@ async def get_all_settings(context, chat_id):
|
|
| 287 |
defaults = {
|
| 288 |
'forbidden_words': [], 'anti_duplicate': False, 'max_message_length': 0,
|
| 289 |
'auto_delete_seconds': 0, 'delete_join_messages': True, 'block_channel_forwards': True,
|
| 290 |
-
'enable_spamscan': False, '
|
| 291 |
'allow_admins_manage': False,
|
| 292 |
'block_bio_links': True, 'enable_ocr_scan': False, 'allow_usernames': False, 'welcome_data': None,
|
| 293 |
'welcome_delete_seconds': 0, 'welcome_mode': 'text', 'enable_sentiment': False,
|
|
|
|
| 53 |
anti_duplicate BOOLEAN DEFAULT FALSE, max_message_length INTEGER DEFAULT 0,
|
| 54 |
auto_delete_seconds INTEGER DEFAULT 0, delete_join_messages BOOLEAN DEFAULT TRUE,
|
| 55 |
block_channel_forwards BOOLEAN DEFAULT TRUE, enable_spamscan BOOLEAN DEFAULT FALSE,
|
| 56 |
+
mute_on_link BOOLEAN DEFAULT FALSE,
|
| 57 |
allow_admins_manage BOOLEAN DEFAULT FALSE,
|
| 58 |
block_bio_links BOOLEAN DEFAULT TRUE, enable_ocr_scan BOOLEAN DEFAULT FALSE,
|
| 59 |
allow_usernames BOOLEAN DEFAULT FALSE, welcome_data JSONB DEFAULT NULL,
|
|
|
|
| 287 |
defaults = {
|
| 288 |
'forbidden_words': [], 'anti_duplicate': False, 'max_message_length': 0,
|
| 289 |
'auto_delete_seconds': 0, 'delete_join_messages': True, 'block_channel_forwards': True,
|
| 290 |
+
'enable_spamscan': False, 'mute_on_link': False,
|
| 291 |
'allow_admins_manage': False,
|
| 292 |
'block_bio_links': True, 'enable_ocr_scan': False, 'allow_usernames': False, 'welcome_data': None,
|
| 293 |
'welcome_delete_seconds': 0, 'welcome_mode': 'text', 'enable_sentiment': False,
|