mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01:00
chore(lint): Clean up user model and controller
This commit is contained in:
@@ -39,8 +39,8 @@ api.registerLocal = {
|
||||
|
||||
// Get the lowercase version of username to check that we do not have duplicates
|
||||
// So we can search for it in the database and then reject the choosen username if 1 or more results are found
|
||||
let lowerCaseUsername = username.toLowerCase();
|
||||
email = email.toLowerCase();
|
||||
let lowerCaseUsername = username.toLowerCase();
|
||||
|
||||
// Search for duplicates using lowercase version of username
|
||||
User.findOne({$or: [
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
// User schema and model
|
||||
import mongoose from 'mongoose';
|
||||
import shared from '../../../common';
|
||||
import passwordUtils from '../libs/api-v3/password';
|
||||
import _ from 'lodash';
|
||||
import validator from 'validator';
|
||||
import moment from 'moment';
|
||||
|
||||
Reference in New Issue
Block a user