Browse Source

larger limit (100 / min) for react

pull/1/head
namasikanam 3 years ago
parent
commit
ac957b4220
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app.py

+ 1
- 1
app.py View File

@ -242,7 +242,7 @@ def create():
@bp.route('/react', methods=['POST'])
@login_required
@limiter.limit("40 / minute")
@limiter.limit("100 / minute")
def react():
kind = request.form.get('kind', type=int)
pid = request.form.get('pid', type=int)

Loading…
Cancel
Save