Skip to content

Commit

Permalink
Add bools to MITS' game submission page handler
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsuta committed Oct 4, 2018
1 parent 661ca7d commit 5833a3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uber/site_sections/mits_applications.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ def delete_document(self, session, id):
raise HTTPRedirect('index?message={}', 'Document deleted')

def game(self, session, message='', **params):
game = session.mits_game(params, applicant=True)
game = session.mits_game(params, bools=['personally_own', 'unlicensed', 'professional'], applicant=True)
if cherrypy.request.method == 'POST':
message = check(game)
if not message:
Expand Down

0 comments on commit 5833a3f

Please sign in to comment.