Changed rate limits
This commit is contained in:
@@ -96,7 +96,7 @@ def api_index():
|
||||
|
||||
|
||||
@app.route('/api/print/sms', methods=['POST'])
|
||||
@limiter.limit("2/minute", override_defaults=False)
|
||||
@limiter.limit("6/minute", override_defaults=False)
|
||||
def api_print_sms():
|
||||
app.logger.debug("Printing an sms")
|
||||
try:
|
||||
@@ -114,7 +114,7 @@ def api_print_sms():
|
||||
return redirect(url_for('index'))
|
||||
|
||||
@app.route('/api/print/img', methods=['POST'])
|
||||
@limiter.limit("2/minute", override_defaults=False)
|
||||
@limiter.limit("6/minute", override_defaults=False)
|
||||
def api_print_image():
|
||||
app.logger.debug("Printing an image")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user