Skip to content

Commit

Permalink
Merge pull request #270 from SELab-2/hotfix
Browse files Browse the repository at this point in the history
Hotfix
  • Loading branch information
BramMeir committed Apr 9, 2024
2 parents ac6d699 + ebecd8a commit 954a5c6
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
10 changes: 5 additions & 5 deletions backend/api/management/commands/make_admin.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from django.core.management.base import BaseCommand
from api.models.student import Student
from authentication.models import User


class Command(BaseCommand):
Expand All @@ -11,10 +11,10 @@ def add_arguments(self, parser):

def handle(self, *args, **options):
username = options['username']
student = Student.objects.filter(username=username)
if student.count() == 0:
user = User.objects.filter(username=username)
if user.count() == 0:
self.stdout.write(self.style.ERROR('User not found, first log in !'))
return
student = student.get()
student.make_admin()
user = user.get()
user.make_admin()
self.stdout.write(self.style.SUCCESS('Successfully made the user admin!'))
38 changes: 19 additions & 19 deletions backend/api/management/commands/seed_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -491,25 +491,25 @@ def seed_data(self, amount, provider_function, update_function):
def handle(self, *args, **options):
start_time = time.time()
# TODO maybey take as option
amount_of_students = 50_000
amount_of_assistants = 300
amount_of_teachers = 500
amount_of_courses = 1_000
amount_of_projects = 3_000
amount_of_groups = 9_000
amount_of_submissions = 50_000
amount_of_file_extensions = 20
amount_of_structure_checks = 12_000

# amount_of_students = 0
# amount_of_assistants = 0
# amount_of_teachers = 0
# amount_of_courses = 1
# amount_of_projects = 0
# amount_of_groups = 0
# amount_of_submissions = 0
# amount_of_file_extensions = 0
# amount_of_structure_checks = 0
# amount_of_students = 50_000
# amount_of_assistants = 300
# amount_of_teachers = 500
# amount_of_courses = 1_000
# amount_of_projects = 3_000
# amount_of_groups = 9_000
# amount_of_submissions = 50_000
# amount_of_file_extensions = 20
# amount_of_structure_checks = 12_000

amount_of_students = 0
amount_of_assistants = 0
amount_of_teachers = 0
amount_of_courses = 0
amount_of_projects = 30_000
amount_of_groups = 0
amount_of_submissions = 0
amount_of_file_extensions = 0
amount_of_structure_checks = 0

self.seed_data(amount_of_students, fake.provide_student, update_Student_providers)
self.stdout.write(self.style.SUCCESS('Successfully seeded students!'))
Expand Down

0 comments on commit 954a5c6

Please sign in to comment.