Hi
First of, thanks for the prompt reply!
The following screenshot is under admin - account - default user preference; (to show that it’s disabled and the db id)
I then used mongo shell to have a look into the db;
db.rocketchat_settings.find({_id: “Accounts_Default_User_Preferences_displayAvatars”})
{ “_id” : “Accounts_Default_User_Preferences_displayAvatars”, “_updatedAt” : ISODate(“2022-09-27T07:49:22.003Z”), “autocomplete” : true, “blocked” : false, “createdAt” : ISODate(“2022-09-17T05:42:37.419Z”), “enterprise” : false, “group” : “Accounts”, “hidden” : false, “i18nDescription” : “Accounts_Default_User_Preferences_displayAvatars_Description”, “i18nLabel” : “Display_avatars”, “packageValue” : true, “public” : true, “requiredOnWizard” : false, “secret” : false, “section” : “Accounts_Default_User_Preferences”, “sorter” : 21014, “ts” : ISODate(“2022-09-17T05:42:37.419Z”), “type” : “boolean”, “value” : false, “valueSource” : “packageValue”, “env” : false }
and for ascii → emoji;
db.rocketchat_settings.find({_id: “Accounts_Default_User_Preferences_convertAsciiEmoji”})
{ “_id” : “Accounts_Default_User_Preferences_convertAsciiEmoji”, “_updatedAt” : ISODate(“2022-09-21T12:05:47.945Z”), “autocomplete” : true, “blocked” : false, “createdAt” : ISODate(“2022-09-17T05:42:37.410Z”), “enterprise” : false, “group” : “Accounts”, “hidden” : false, “i18nDescription” : “Accounts_Default_User_Preferences_convertAsciiEmoji_Description”, “i18nLabel” : “Convert_Ascii_Emojis”, “packageValue” : true, “public” : true, “requiredOnWizard” : false, “secret” : false, “section” : “Accounts_Default_User_Preferences”, “sorter” : 21007, “ts” : ISODate(“2022-09-17T05:42:37.410Z”), “type” : “boolean”, “value” : false, “valueSource” : “packageValue”, “env” : false }
Sorry for the bad formatting, but not really sure where to line break correctly.
So, the thing is what value should I be looking at to see if the settings is saved or not?