Skip to content

Commit

Permalink
Remove game submitted validation
Browse files Browse the repository at this point in the history
I never noticed this because admin issues bypass it, whoops
  • Loading branch information
kitsuta committed Aug 28, 2024
1 parent 05a1fa5 commit d42d82e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions uber/model_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,12 +463,6 @@ def mivs_video_link(game):
return 'The link you provided for the intro/instructional video does not appear to work'


@validation.IndieGame
def mivs_submitted(game):
if (game.submitted and not game.status == c.ACCEPTED) and not c.HAS_MIVS_ADMIN_ACCESS:
return 'You cannot edit a game after it has been submitted'


@validation.IndieGame
def mivs_show_info_required_fields(game):
if game.confirmed:
Expand Down

0 comments on commit d42d82e

Please sign in to comment.