You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can do Create/Read/Update/Destroy operations on schools
So that I can manage the Schools
Discussion
The backend CRUD for the schools table is already implemented; you can find the code in the controllers, and test them on either localhost or swagger. However, as of right now, the frontend is not there.
Your job is to implement a frontend as in team03 for the schools table.
Acceptance Criteria
There is a menu option for an admin to get to the schools index page where all of the schools are listed
There is an option on that page to create a new school
There is an edit button for schools that takes me to school edit page where I can edit schools
There is an delete button for schools that deletes a school
Implementation Todos
F1: Frontend School Implementation
F1.1: Building create button
Make the "create school" button work.
Link the create school button to correct API and make a SchoolCreate.js page for that.
Make sure it's actually creating a school
F1.2: Building Edit button
Link the edit school button to correct API and make a SchoolEdit.js page for that.
Make sure it actually allows you to update a school
F1.3: Building Delete button
Delete button appears
Link the Delete school button to correct API.
Make sure it's actually allows you to delete a school
B1: Bugs in Backend:
B1.1: Update API
You should not be able to update to the school abbrev if it used as the primary key. If it is not used as the primary key perhaps it should be (similar to UCSBOrganizations in team03).
The text was updated successfully, but these errors were encountered:
User Story
Discussion
The backend CRUD for the schools table is already implemented; you can find the code in the controllers, and test them on either localhost or swagger. However, as of right now, the frontend is not there.
Your job is to implement a frontend as in team03 for the schools table.
Acceptance Criteria
Implementation Todos
F1: Frontend School Implementation
F1.1: Building create button
F1.2: Building Edit button
F1.3: Building Delete button
B1: Bugs in Backend:
B1.1: Update API
The text was updated successfully, but these errors were encountered: