-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Buyer's Guide og tags & main nav share icons #1926
Conversation
Yay looks great! Copy link doesn't work on my iPhone but that is an issue on the live site and also on the category page so we can try to sort that out later. |
Let's actually go ahead and leave the removal of the login prevention when we merge this since we want this to be unlocked today anyway. |
@@ -30,7 +30,7 @@ def get_average_creepiness(product): | |||
|
|||
# Login required so we can continue to develop this and merge into master without the public seeing it. | |||
# Remove this when we're ready to launch. | |||
@login_required | |||
# @login_required |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# @login_required | |
@login_required |
@@ -41,7 +41,7 @@ def buyersguide_home(request): | |||
}) | |||
|
|||
|
|||
@login_required | |||
# @login_required |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# @login_required | |
@login_required |
@@ -53,7 +53,7 @@ def category_view(request, categoryname): | |||
}) | |||
|
|||
|
|||
@login_required | |||
# @login_required |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# @login_required | |
@login_required |
@@ -64,7 +64,7 @@ def product_view(request, productname): | |||
}) | |||
|
|||
|
|||
@login_required | |||
# @login_required |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# @login_required | |
@login_required |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Scratch my previous comment- keep the login required bits (since testing fails due to non-use of that decorator)
Related #1899
https://foundation-mofostaging-pr-1926.herokuapp.com/privacynotincluded/
Only covers the following
Not covered in this PR
❗️ Remember to revert changes in
network-api/networkapi/buyersguide/views.py
before merging