diff --git a/client/app/constants/index.js b/client/app/constants/index.js index 2e9a5d30..1d2bf254 100644 --- a/client/app/constants/index.js +++ b/client/app/constants/index.js @@ -18,6 +18,6 @@ export const DELETE_USER_REQUEST = 'DELETE_USER_REQUEST'; export const DELETE_USER_SUCCESS = 'DELETE_USER_SUCCESS'; export const DELETE_USER_FAILURE = 'DELETE_USER_FAILURE'; -export const VERSION = 'v1.5.1'; +export const VERSION = 'v1.5.2'; export const API_URL = ''; // process.env.NODE_ENV === 'production' ? '': 'http://localhost:5000/' diff --git a/server/views/home.py b/server/views/home.py index 988714d2..e6a8797c 100644 --- a/server/views/home.py +++ b/server/views/home.py @@ -36,3 +36,11 @@ def profile(): @home.route('/twitter_callback', methods=['GET']) def twitter_callback(): return render_template('index.html') + +@home.route('/privacy', methods=['GET']) +def privacy(): + return render_template('index.html') + +@home.route('/about', methods=['GET']) +def about(): + return render_template('index.html')