Skip to content
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

CSC/ECE 517 Fall 2024 - E2488. Reimplement add TA #72

Open
wants to merge 20 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
147c947
Updated README.md added contributors name
MakarandPundlik Nov 10, 2024
159ca63
Added npm install command
MakarandPundlik Nov 10, 2024
52d4f29
UI enhancements to the TA and Course page
Nov 24, 2024
65421d9
resolved a bug by adding select TA to the final array and removed it …
MakarandPundlik Nov 28, 2024
fbf7ba4
Merge pull request #5 from MakarandPundlik/makarand_features
AnuragGorkar Nov 28, 2024
36e0219
Merge pull request #1 from MakarandPundlik/manage_ta_page
MakarandPundlik Nov 28, 2024
8626591
added unit test cases for columns
MakarandPundlik Nov 30, 2024
104268a
added unit test cases for coursecolumns
MakarandPundlik Nov 30, 2024
d3da1da
added test cases for column button
MakarandPundlik Nov 30, 2024
f81a2ad
Merge pull request #6 from MakarandPundlik/makarand_unit_tests
MakarandPundlik Nov 30, 2024
bd54b4e
Added select feature to Add TA drop down
Nov 30, 2024
d6fc810
Merge pull request #9 from MakarandPundlik/8-add-search-feature-for-s…
AnuragGorkar Nov 30, 2024
57bc5e4
Fetch students as well as TAs in the Add TA page
Rutvik2598 Dec 1, 2024
909c0c3
Merge pull request #10 from MakarandPundlik/3-fetch-all-students-and-…
Rutvik2598 Dec 1, 2024
8108d86
Added permission check before rendering add TA button
Dec 3, 2024
c525ad5
Merge pull request #13 from MakarandPundlik/11-admin-only-access-to-a…
AnuragGorkar Dec 3, 2024
2138f9a
Removed contributor names
MakarandPundlik Dec 7, 2024
59e8b6e
Code cleanup
Dec 7, 2024
e0cf5da
Instructor can also add TA other than Admin
Rutvik2598 Dec 7, 2024
ef6fd6d
Merge pull request #14 from MakarandPundlik/instructor_can_add_ta
AnuragGorkar Dec 7, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ This project was bootstrapped with [Create React App](https://github.com/faceboo

In the project directory, you can run:

### `npm install`
Installs the dependencies required

### `npm start`

Runs the app in the development mode.\
Expand Down
274 changes: 265 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
"axios": "^1.4.0",
"bootstrap": "^5.3.3",
"chart.js": "^4.1.1",
"recharts": "^2.0.0",
"formik": "^2.2.9",
"formik": "^2.4.6",
"jquery": "^3.7.1",
"jwt-decode": "^3.1.2",
"react": "^18.2.0",
Expand All @@ -34,6 +33,8 @@
"react-redux": "^8.0.5",
"react-router-dom": "^6.11.1",
"react-scripts": "^5.0.1",
"react-select": "^5.8.3",
"recharts": "^2.0.0",
"redux-persist": "^6.0.0",
"sass": "^1.62.1",
"save": "^2.9.0",
Expand Down
Loading