mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
Allow slim view to be iframed. Refs #126
This commit is contained in:
parent
d4c678eb73
commit
68d21874b5
1 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
from django.apps import apps
|
||||
from django.conf import settings
|
||||
from django.conf.urls import url
|
||||
from django.views.decorators.clickjacking import xframe_options_exempt
|
||||
from django.views.generic import TemplateView
|
||||
|
||||
from .. import views
|
||||
|
@ -31,7 +32,11 @@ urlpatterns = [
|
|||
),
|
||||
url(
|
||||
r'^(?P<snippet_id>[a-zA-Z0-9]{%d,})/slim/?$' % L,
|
||||
views.SnippetDetailView.as_view(template_name='dpaste/details_slim.html'),
|
||||
xframe_options_exempt(
|
||||
views.SnippetDetailView.as_view(
|
||||
template_name='dpaste/details_slim.html'
|
||||
)
|
||||
),
|
||||
name='snippet_details_slim',
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue