Actually zoom functionality is controlled by the following tag:
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
You can try to insert another one in Studio > Design > Injections, it maybe second one will have more precedence over first one:
<meta name="viewport" content="width=device-width, initial-scale=1" />
So you can add something like this to your mix custom styles field:
:root {
--fa-primary-color: green;
--fa-primary-opacity: 1.0;
--fa-secondary-color: red;
--fa-secondary-opacity: 1.0;
}
So it will look like this:
One more way to invalidate all caches is to change revision number, you can try to do it as well in Studio > Developer > Revision number
You can try to update Rocket.Chat settings directly in DB
1) login to your server via SSH
2) run the following command, so mongodb shell will be opened:
mongo
3) select current DB in the opened shell, the default db name is "rocketchat":
use rocketchat;
4) run the following queries to update settings, make sure to replace FULL-URL-TO-UNA-SITE (starting with http:// or https://), YOUR-KEY & YOUR-SECRET with your actual values
db.rocketchat_settings.update({"_id": "Accounts_OAuth_UNA_URL"}, { $set: {"value": "FULL-URL-TO-UNA-SITE", "meteorSettingsValue": "FULL-URL-TO-UNA-SITE"}}); db.rocketchat_settings.update({"_id": "Accounts_OAuth_UNA_id"}, { $set: {"value": "YOUR-KEY", "meteorSettingsValue": "YOUR-KEY"}}); db.rocketchat_settings.update({"_id": "Accounts_OAuth_UNA_secret"}, { $set: {"value": "YOUR-SECRET", "meteorSettingsValue": "YOUR-SECRET"}});
As the result you should see something like this: "WriteResult({ "nMatched" : 1, "nUpserted" : 0, "nModified" : 1 })"
It maybe Rocket.Chat restart will be required.
To allow other than images uploads in comments across the site (except discussions) run the following query:
UPDATE `sys_objects_storage` SET `ext_allow` = 'jpg,jpeg,jpe,gif,png,pdf,zip' WHERE `object` = 'sys_cmts_images';
In above example pdf and zip file types were added, but other extensions can be added there as well.
Please note that preview is generated for image files only, video and audio files will not have preview.