feat: Add newzealand to reserved tlds
All checks were successful
Build Docker / Build Image (push) Successful in 20s

This commit is contained in:
Nathan Woodburn 2024-02-20 15:02:40 +11:00
parent 49cd9bd0dd
commit afc91feee8
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -7,7 +7,7 @@ import datetime
app = Flask(__name__) app = Flask(__name__)
dotenv.load_dotenv() dotenv.load_dotenv()
not_for_sale = ['australia'] not_for_sale = ['australia', 'newzealand']
@app.route('/assets/<path:path>') @app.route('/assets/<path:path>')
def send_report(path): def send_report(path):