Skip to content

Commit

Permalink
Merge pull request #205 from haystack/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
JumanaFM authored Jan 9, 2022
2 parents 4a1e6d7 + 5ea4008 commit c177ba8
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions migrations/20220108172527-insert-nb-configs-04.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
'use strict';

module.exports = {
up: async (queryInterface, Sequelize) => {
queryInterface.bulkInsert('nb_configs', [
{
name: 'FILTER_MAX_THREADS',
value: 'false',
description: 'Enable/Disable filtering max number of threads displayed'
},
{
name: 'CONFIG_FILTER_MAX_THREADS',
value: 20,
description: 'Configurations for max number of threads displayed'
},
{
name: 'SHOW_SPOTLIGHT_CONTROLS',
value: 'true',
description: 'Enable/Disable spotlight controls for instructors'
},
{
name: 'CONFIG_SYNC_NOTIFICATION_POPUP_TIMER',
value: 60000,
description: 'Configurations for notification popup timer'
},
])
},

down: async (queryInterface, Sequelize) => {
}
};

0 comments on commit c177ba8

Please sign in to comment.