Skip to content

Commit

Permalink
Merge pull request #16 from bigbluebutton/develop
Browse files Browse the repository at this point in the history
chore: update from develop (1.3.1)
  • Loading branch information
prlanzarin authored Oct 25, 2022
2 parents ad42c9b + 2772246 commit cb02e39
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 23 deletions.
18 changes: 18 additions & 0 deletions config/settings.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,24 @@
"log": {
"level": "info"
},
"models": {
"notes": {
"id": "notes",
"permission": {
"MODERATOR": true,
"VIEWER": true
},
"capacity": 0
},
"captions": {
"id": "captions",
"permission": {
"MODERATOR": true,
"VIEWER": false
},
"capacity": 1
}
},
"monitor": {
"enabled": true,
"interval": 3600000
Expand Down
23 changes: 3 additions & 20 deletions lib/redis/database.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,9 @@ const Logger = require('../utils/logger');

const logger = new Logger('database');

const { etherpad: settings } = config;

const MODELS = {
notes: {
id: 'notes',
permission: {
MODERATOR: true,
VIEWER: true,
},
capacity: 0,
},
captions: {
id: 'captions',
permission: {
MODERATOR: true,
VIEWER: false,
},
capacity: 1,
},
};
const { etherpad: settings, models } = config;

const MODELS = models;

const database = {};

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bbb-pads",
"version": "1.3.0",
"version": "1.3.1",
"description": "BigBlueButton's pads manager",
"engines": {
"node": ">=16"
Expand Down

0 comments on commit cb02e39

Please sign in to comment.