Simplified question route
This commit is contained in:
parent
a50926b192
commit
f7c6081ca0
@ -9,11 +9,9 @@ views = Blueprint(
|
||||
import_name=__name__
|
||||
)
|
||||
|
||||
@views.route('/fetch/<string:data_type>/')
|
||||
def _fetch(data_type):
|
||||
if not check_file(f'{data_type}.json'): return abort(404)
|
||||
if data_type == 'questions': return render_questions()
|
||||
return load(f'{data_type}.json')
|
||||
@views.route('/questions/')
|
||||
def _questions():
|
||||
return render_questions()
|
||||
|
||||
@views.route('/submit/', methods=['POST'])
|
||||
def _submit():
|
||||
|
Loading…
Reference in New Issue
Block a user