so that I can differentiate students and professors
Discussion
We have a current User table to show the logged in users of the application. We want to add roles to this table to visually see which users are students vs. professors.
As an example, here is the admin User table from proj-gauchoride:
We want to make ours look similar to this, except for the Admin/Student/Professor Roles. Toggling roles could also be an issue to work on after this if you get time!
Acceptance Criteria
[ ] Admins can view the roles of different users on the User Table
Optional future issue:
[ ] Admins can toggle user roles
Implementation Todos
Frontend/Backend changes:
[ ] The User Table includes boolean columns for each of the roles (student, professor, admin).
[ ] Based on their user roles, each row (a single user) is populated with the correct Boolean values
Testing:
[ ] Front end tests pass and there is adequate coverage
[ ] Back end tests pass and there is adequate coverage
Hints
Compare the following files between the current proj-rec code base, and the proj-gauchoride code base.
User Story
Discussion
We have a current User table to show the logged in users of the application. We want to add roles to this table to visually see which users are students vs. professors.
As an example, here is the admin User table from proj-gauchoride:
We want to make ours look similar to this, except for the Admin/Student/Professor Roles. Toggling roles could also be an issue to work on after this if you get time!
Acceptance Criteria
Optional future issue:
Implementation Todos
Frontend/Backend changes:
Testing:
Hints
Compare the following files between the current
proj-rec
code base, and theproj-gauchoride
code base.