mirror of
https://github.com/matrix-org/mjolnir.git
synced 2024-10-01 01:36:06 -04:00
default displayReports to true, as that is the current functionality
This commit is contained in:
parent
ca2c8e535f
commit
8909e4d4d7
@ -54,6 +54,10 @@ interface IConfig {
|
||||
*/
|
||||
backgroundDelayMS: number;
|
||||
pollReports: boolean;
|
||||
/**
|
||||
* Whether or not new reports, received either by webapi or polling,
|
||||
* should be printed to our managementRoom.
|
||||
*/
|
||||
displayReports: boolean;
|
||||
admin?: {
|
||||
enableMakeRoomAdminCommand?: boolean;
|
||||
@ -125,7 +129,7 @@ const defaultConfig: IConfig = {
|
||||
protectAllJoinedRooms: false,
|
||||
backgroundDelayMS: 500,
|
||||
pollReports: false,
|
||||
displayReports: false,
|
||||
displayReports: true,
|
||||
commands: {
|
||||
allowNoPrefix: false,
|
||||
additionalPrefixes: [],
|
||||
|
Loading…
Reference in New Issue
Block a user