We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17b0773 commit e636482Copy full SHA for e636482
conditional/__init__.py
@@ -165,9 +165,7 @@ def gatekeep(username):
165
if token != app.config["VOTE_TOKEN"]:
166
return "Users cannot access this page", 403
167
168
- return gatekeep_status(username)
169
-
170
+ return gatekeep_status(username), 200
171
172
173
@app.errorhandler(404)
conditional/util/member.py
@@ -238,4 +238,4 @@ def gatekeep_status(username):
238
"h_meetings": h_meetings,
239
"c_meetings": d_meetings,
240
"t_seminars": t_seminars,
241
- }, 200
+ }
0 commit comments