Jeysiva-apjs / LearnAcademy-OpenSource

A MERN full-stack course selling app.
https://jeysiva-learn-academy-user.vercel.app/
MIT License
19 stars 10 forks source link

Admin registration db bug fixed #7

Closed junaid-arif-24 closed 1 year ago

junaid-arif-24 commented 1 year ago

While Registring as an admin, the data is saved in collection User intead of collection Admin because the in signup post request we are creating the new User intead of new Admin.

file: server/routes/admin.js //line no. 27

previous code: const newUser = new User({ username, password });

New Code : const newUser = new Admin({ username, password });

Jeysiva-apjs commented 1 year ago

Thanks for the fix!