You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/src/upgrades/1.19.0/reenable-username-login.js

16 lines
321 B
JavaScript

'use strict';
const meta = require('../../meta');
module.exports = {
name: 'Re-enable username login',
timestamp: Date.UTC(2021, 10, 23),
method: async () => {
const setting = await meta.config.allowLoginWith;
if (setting === 'email') {
await meta.configs.set('allowLoginWith', 'username-email');
}
},
};