Commit 8220bc91 by Simon Chen Committed by GitHub

Merge pull request #899 from edx/schen/securityfix2016-08-08

Move the security fix into Eucalyptus
parents 7985cc96 1312dc95
from oscar import app from oscar import app
from oscar.core.application import Application
class EdxShop(app.Shop): class EdxShop(app.Shop):
# URLs are only visible to users with staff permissions # URLs are only visible to users with staff permissions
default_permissions = 'is_staff' default_permissions = 'is_staff'
# Override core app instances with blank application instances to exclude their URLs.
promotions_app = Application()
catalogue_app = Application()
offer_app = Application()
search_app = Application()
application = EdxShop() application = EdxShop()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment