shashiben / Hostel-Management

Created a hostel application management web app to track students where they are,and note the attendance of students according to room No and download data of attendance for each day
145 stars 60 forks source link

Not authorize as Admin #7

Open muntii opened 3 months ago

muntii commented 3 months ago

How to setup first admin user? There is no option to set user as admin in Register page

arpit7742 commented 1 month ago

You can just add the admin user manually.

for example:

you can edit the userController.js to add an Admin user :

  const user = await User.create({
    name,
    email,
    password,
    isAdmin: true, // MAKE SURE TO REMOVE IT AFTER ADDING YOUR ADMIN USER
  });