-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nitin's Teams's Features/Plans #37
Comments
The first feature, /update-tasks, allows adding new tasks to a student's existing task list based on their username. If the student is found, the tasks provided in the request are added to their list and saved in the database. If the student is not found, a 404 error is returned. The second feature, /complete-task, enables marking a specific task as completed. If the student and task exist, the task is removed from the active task list, added to a "completed" list with a "Completed" tag, and saved in the database. If the student or task is not found, an error message is returned. @Getter
} @PostMapping("/complete-task")
} Integration for our code: My plan: Me and my previous table group partner, Nitin seem to have a general same features. Nitin has already since last tri moved most of the API file where all my code is. Issues, currently working on fixing up a possible progress bar feature after receiving feedback on Night of the Museum. Overall the integration process is simple since we only have 3 files and a minor change in the model init file. Open the right git pull request, after commited code to our main branch combined for this trimester and then from there it will be pushed into our respective repo. |
Evaluation of Nitin Details all the frontend and backend work done and the code. Also has a UML diagram of the attributes of their "Student" which will need to be integrated into the Person table. Steps to be taken details the process of combining his code with his teammates and then making a pull request.
Score: 1/1 |
My Feature
Get Student Details Feature
It takes the student's name and returns all their Github details, allowing Mr. Mortenson and others to quickly and seamlessly check the analytics of specific students.
Backend Work
Frontend Work
UML Design
id
Long
name
String
username
String
tableNumber
int
course
String
tasks
ArrayList<String>
trimester
int
period
int
What needs to be done
I have files both in the frontend and in the backend. I must first combine this all with my teammates' code into a combined backend and frontend. I then must put all this code onto our branch of the CSA-Coders-2025 backend and frontend. From there, I can then make a pull request to be accepted onto the main CSA 2025 repository. Regarding my collaboration with other teams, specifically CSA Synergy and AI grader, we must make a feature to assign grades to a table. We must also use Person class rather than hardcoding students and only retrieve students using the role
ROLE_STUDENT
.The text was updated successfully, but these errors were encountered: