Skip to content

Commit

Permalink
change: set default approved_by_admin is true
Browse files Browse the repository at this point in the history
  • Loading branch information
meua committed Jan 4, 2024
1 parent 7d0f4e2 commit bc44eb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/challenges/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def __init__(self, *args, **kwargs):
default=False, upload_to=RandomFileName("evaluation_scripts")
) # should be zip format
approved_by_admin = models.BooleanField(
default=False, verbose_name="Approved By Admin", db_index=True
default=True, verbose_name="Approved By Admin", db_index=True
)
uses_ec2_worker = models.BooleanField(
default=False, verbose_name="Uses EC2 worker instance", db_index=True
Expand Down

0 comments on commit bc44eb1

Please sign in to comment.