birb-scheduler-teller/birb_scheduler/utils/require_decorators.py

17 lines
292 B
Python

#!/usr/bin/env python3
from flask import request, abort
from functools import wraps
def json_required(f):
@wraps(f)
def call(*args, **kwargs):
if request.is_json:
return f(*args, **kwargs)
else:
abort(400, "JSON required")
return call