Skip to content

Commit

Permalink
bot group filter system messages fix
Browse files Browse the repository at this point in the history
  • Loading branch information
grandmotivator committed Oct 6, 2023
1 parent e9cb9a4 commit a6a2c7c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions modules/bot/models/ChatSetting.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ class ChatSetting extends ActiveRecord
'filter_remove_locations' => [
'default' => self::STATUS_OFF,
],
'filter_remove_member_joined' => [
'default' => self::STATUS_OFF,
],
'filter_remove_member_left' => [
'default' => self::STATUS_OFF,
],
'filter_remove_reply' => [
'default' => self::STATUS_OFF,
],
Expand All @@ -59,9 +65,6 @@ class ChatSetting extends ActiveRecord
'filter_remove_username' => [
'default' => self::STATUS_OFF,
],
'filter_status' => [
'default' => self::STATUS_OFF,
],
'filter_remove_video_chat_ended' => [
'default' => self::STATUS_OFF,
],
Expand All @@ -74,6 +77,9 @@ class ChatSetting extends ActiveRecord
'filter_remove_video_chat_started' => [
'default' => self::STATUS_OFF,
],
'filter_status' => [
'default' => self::STATUS_OFF,
],
'greeting_lifetime' => [],
'greeting_message' => [
'type' => 'string',
Expand Down

0 comments on commit a6a2c7c

Please sign in to comment.