Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo committed Dec 8, 2023
1 parent 78cf230 commit 44bb172
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion apps/meteor/packages/rocketchat-i18n/i18n/en.i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -4893,6 +4893,7 @@
"Started_a_video_call": "Started a Video Call",
"Started_At": "Started At",
"Statistics": "Statistics",
"Statistics_reporting": "Send Statistics to Rocket.Chat",
"Statistics_reporting_Description": "By sending your statistics, you'll help us identify how many instances of Rocket.Chat are deployed, as well as how good the system is behaving, so we can further improve it. Don't worry, as no user information is sent and all the information we receive is kept confidential.",
"Stats_Active_Guests": "Activated Guests",
"Stats_Active_Users": "Activated Users",
Expand Down Expand Up @@ -6241,4 +6242,4 @@
"Seat_limit_reached": "Seat limit reached",
"Seat_limit_reached_Description": "Your workspace reached its contractual seat limit. Buy more seats to add more users.",
"Buy_more_seats": "Buy more seats"
}
}
7 changes: 6 additions & 1 deletion apps/meteor/server/settings/general.ts
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,12 @@ export const createGeneralSettings = () =>
public: true,
});
});

await this.section('Reporting', async function () {
return this.add('Statistics_reporting', true, {
type: 'boolean',
hidden: true,
});
});
await this.section('Notifications', async function () {
await this.add('Notifications_Max_Room_Members', 100, {
type: 'int',
Expand Down

0 comments on commit 44bb172

Please sign in to comment.