joytou commited on
Commit
179aea9
1 Parent(s): 7c5e51a

Fixed terms link error

Browse files
Files changed (1) hide show
  1. server.py +4 -4
server.py CHANGED
@@ -53,19 +53,19 @@ def add_dream():
53
  dreams.append(request.args.get('dream'))
54
  return ''
55
 
56
- @application.route('/disclaimer', method=['GET'])
57
  def disclaimer():
58
  return render_template("disclaimer.html")
59
 
60
- @application.route('/eula', method=['GET'])
61
  def eula():
62
  return render_template("eula.html")
63
 
64
- @application.route('/privacy_policy', method=['GET'])
65
  def privacyPolicy():
66
  return render_template("privacy_policy.html")
67
 
68
- @application.route('/terms_of_service', method=['GET'])
69
  def termsOfService():
70
  return render_template("terms_of_service.html")
71
 
 
53
  dreams.append(request.args.get('dream'))
54
  return ''
55
 
56
+ @application.route('/disclaimer')
57
  def disclaimer():
58
  return render_template("disclaimer.html")
59
 
60
+ @application.route('/eula')
61
  def eula():
62
  return render_template("eula.html")
63
 
64
+ @application.route('/privacy_policy')
65
  def privacyPolicy():
66
  return render_template("privacy_policy.html")
67
 
68
+ @application.route('/terms_of_service')
69
  def termsOfService():
70
  return render_template("terms_of_service.html")
71