Skip to content

Commit

Permalink
Merge pull request #93 from mitmedialab/dsjen/links
Browse files Browse the repository at this point in the history
Restore deep linking to privacy and about pages
  • Loading branch information
dsjen authored Jan 3, 2019
2 parents 87dd49b + 35ebca5 commit 175a44b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/constants/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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/'
8 changes: 8 additions & 0 deletions server/views/home.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

0 comments on commit 175a44b

Please sign in to comment.