Skip to content

Commit

Permalink
Development fixes
Browse files Browse the repository at this point in the history
jpnavarro committed Oct 25, 2022

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
1 parent fa14854 commit 673dc1c
Showing 3 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
3.0.0-rc8 JP
- Development fixes

3.0.0-rc7 JP
- Development fixes

Original file line number Diff line number Diff line change
@@ -246,6 +246,9 @@
CORS_ALLOW_METHODS = (
'GET'
)
CSRF_TRUSTED_ORIGINS = (
'https://*.access-ci.org',
)

SPECTACULAR_SETTINGS = {
'TITLE': 'ACCESS Operations Information Services API',
Original file line number Diff line number Diff line change
@@ -13,8 +13,10 @@
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.conf import settings as django_settings
from django.contrib import admin
from django.urls import include, path
from django.views.generic import RedirectView
from drf_spectacular.views import SpectacularAPIView, SpectacularRedocView, SpectacularSwaggerView

urlpatterns = [

0 comments on commit 673dc1c

Please sign in to comment.