Commit 8cf56935 authored by AravindR-K's avatar AravindR-K

fixed a spelling mistake

bcrypt -> bcryptjs
parent d5df94f7
const mongoose = require('mongoose');
const User = require('../models/User');
const bcrypt = require('bcrypt');
const bcrypt = require('bcryptjs');
const createAdmin = async () => {
const adminExists = await User.findOne({ email: 'admin@test.com' });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment