mirror of
https://github.com/GSA/notifications-admin.git
synced 2025-12-15 17:44:03 -05:00
10 lines
256 B
Python
10 lines
256 B
Python
from flask import send_from_directory
|
|
|
|
from app.main import main
|
|
|
|
|
|
@main.route("/.well-known/security.txt", methods=["GET"])
|
|
@main.route("/security.txt", methods=["GET"])
|
|
def security_policy():
|
|
return send_from_directory(".well-known", "security.txt")
|