1
0
forked from finn/site

mgt c7 checkpoint 1

This commit is contained in:
2024-08-03 06:31:19 -07:00
parent af0978c4e8
commit fe2dcd23f1
5 changed files with 32 additions and 1 deletions

13
backend/app/errors.py Normal file
View File

@@ -0,0 +1,13 @@
from flask import render_template
from app import app, db
@app.errorhandler(404)
def not_found_error(error):
return render_template('404.html'), 404
@app.errorhandler(500)
def internal_error(error):
db.session.rollback()
return render_template('500.html'), 500