Created by Team M.E.A.T
Report Bug
·
Request Feature
- Table of Contents
- About The Project
- Contributors
- Getting Started
- Contributing
- License
- Contact
- API Endpoints
The BCIT Interior Design Department currently has to manually enter all part-time student grades for each course every term which costed a significant amount of time compiling data in order to check if applicants have the correct prerequisites for each course. This process is very repetitive and inefficient, therefore, they want a system that can compile all the data from all attendance sheets generated from the Cognos system into a more user-friendly format.
Automated Course Registration System is a proposed web application which contains two parts: the Front-end and Back-end with a goal to reduce the number of manual student grade entries which helps simplify the course registration process and minimize any potential mistakes from manual entries.
Technologies used:
Please follow these simple steps to get a running version on your local machine
You will need to install these packages in order to get the application running
- angular/cli
npm install @angular/cli
- dotnet
- Clone the repo
git clone https://github.com/tommyyeh0505/Automated-Course-Registration-System
- Navigate to ClientApp folder
cd ClientApp
- Install NPM packages
npm install
- Run the Front-end, the website will be running on localhost:4200
ng serve
or
npm start
- From the root folder, navigate to API/ACRS folder
cd API/ACRS
- Run the Back-end by executing this command
dotnet run
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request with a description
Distributed under the MIT License. See LICENSE
in the root folder for more information.
Eva Au - eva.apy@gmail.com
Tommy Yeh - tommyyeh0505@hotmail.com
Andy Tang - andytang43@gmail.com
Mike Hoang - mikehoang.bcit@gmail.com
URL | Method | Data Params | URL Params |
---|---|---|---|
/api/auth/login | POST | {username, password} |
None |
/api/auth/register | POST | {username, password} |
None |
/api/auth/users/:username | PUT | {username, currentPassword, newPassword} |
username |
/api/courses | GET | None | None |
/api/courses/:courseId | GET | None | courseId |
/api/courses/:courseId | PUT | {courseId, passingGrade, prerequisites} |
courseId |
/api/courses | POST | {courseId, passingGrade, prerequisites} |
None |
/api/courses/:courseId | DELETE | None | courseId |
/api/courses/:courseId/eligible | GET | None | courseId |
/api/courses/:courseId/ineligible | GET | None | courseId |
/api/grades | GET | None | None |
/api/grades/:gradeId | GET | None | gradeId |
/api/grades/filter/:courseId/:crn/:term | GET | None | courseId, crn, term |
/api/grades/:gradeId | PUT | {gradeId, studentId, courseId, crn, term, finalGrade, attempts} |
gradeId |
/api/grades/ | POST | {studentId, courseId, crn, term, finalGrade, attempts} |
None |
/api/grades/:gradeId | DELETE | None | None |
/api/students | GET | None | None |
/api/students/:studentId | GET | None | studentId |
/api/students/:studentId | PUT | {studentId, studentName} |
studentId |
/api/students | POST | {studentId, studentName} |
studentId |
/api/students/:studentId | DELETE | None | studentId |
/api/waitlists | GET | None | None |
/api/waitlists/:waitlistId | GET | None | waitlistId |
/api/waitlists/ | POST | {courseId, crn, term, studentId} |
None |
/api/waitlists/:waitlistId | DELETE | None | None |
/api/waitlists/filter/:courseId/:crn/:term | GET | None | courseId, crn, term |
/api/waitlists/all | DELETE | None | None |