-# -*- coding: utf-8 -*-
# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
urlpatterns = [
- url(r'^oauth/request_token/$', views.OAuth1RequestTokenView.as_view()),
+ url(r'^oauth/request_token/$', csrf_exempt(views.OAuth1RequestTokenView.as_view())),
url(r'^oauth/authorize/$', views.oauth_user_auth, name='oauth_user_auth'),
url(r'^oauth/access_token/$', csrf_exempt(views.OAuth1AccessTokenView.as_view())),