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.
16 lines
321 B
JavaScript
16 lines
321 B
JavaScript
3 years ago
|
'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');
|
||
|
}
|
||
|
},
|
||
|
};
|