Added Redirect

This commit is contained in:
Nile Walker 2021-02-03 09:14:52 -05:00
parent b4c8cf7400
commit 171b3540f1

View File

@ -117,6 +117,11 @@ def superuser(f):
return f(*args, **kwargs) return f(*args, **kwargs)
return decorated_function return decorated_function
@app.route('/')
def new_site():
return redirect("localhost:4200/dashboard") #TODO Put in the prod dashboard url
def __make_csv(sample_query): def __make_csv(sample_query):
csvfile = io.StringIO() csvfile = io.StringIO()
headers = [ headers = [