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

TA Reviews Improvements (Frontend + Backend) #303

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion backend/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dj-database-url = "*"
djangorestframework = "*"
psycopg2 = "*"
sentry-sdk = "*"
django = "==3.1.7"
django = "==3.2.4"
django-cors-headers = "*"
pyyaml = "*"
uritemplate = "*"
Expand Down
1,996 changes: 1,033 additions & 963 deletions backend/Pipfile.lock

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions backend/ohq/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
QueueStatistic,
Semester,
Tag,
Review
)


Expand All @@ -26,3 +27,4 @@
admin.site.register(QueueStatistic)
admin.site.register(Announcement)
admin.site.register(Tag)
admin.site.register(Review)
368 changes: 161 additions & 207 deletions backend/ohq/migrations/0001_initial.py
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you explain why all migration files are being merged into one here?

Copy link
Contributor Author

@trangiabach trangiabach Feb 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch! There were some conflict that was happening on my local computer that needed this change but yes I was intending to make them separated in later commits!

Copy link
Contributor Author

@trangiabach trangiabach Feb 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Forgot to mention this. This PR is still WIP, let me make it a draft!

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions backend/ohq/migrations/0002_alter_review_question.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.2.7 on 2024-03-28 00:52

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
('ohq', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='review',
name='question',
field=models.OneToOneField(blank=True, on_delete=django.db.models.deletion.CASCADE, primary_key=True, related_name='review', serialize=False, to='ohq.question'),
),
]
96 changes: 0 additions & 96 deletions backend/ohq/migrations/0002_auto_20200816_1727.py

This file was deleted.

28 changes: 0 additions & 28 deletions backend/ohq/migrations/0003_auto_20200822_1116.py

This file was deleted.

18 changes: 0 additions & 18 deletions backend/ohq/migrations/0004_auto_20200825_1344.py

This file was deleted.

23 changes: 0 additions & 23 deletions backend/ohq/migrations/0005_auto_20201016_1702.py

This file was deleted.

39 changes: 0 additions & 39 deletions backend/ohq/migrations/0006_auto_20210105_2000.py

This file was deleted.

45 changes: 0 additions & 45 deletions backend/ohq/migrations/0007_announcement.py

This file was deleted.

33 changes: 0 additions & 33 deletions backend/ohq/migrations/0008_auto_20210119_2218.py

This file was deleted.

Loading
Loading