Skip to content

Commit

Permalink
Merge pull request #76 from girder/auth-cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhelba committed Oct 16, 2020
2 parents c170f9f + 4cb88ad commit 3c15808
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
)

urlpatterns = [
path('accounts/', include('allauth.urls')),
path('admin/', admin.site.urls),
path('api/s3-upload/', include('s3_file_field.urls')),
path('api/v1/', include(router.urls)),
path('api/docs/redoc', schema_view.with_ui('redoc'), name='docs-redoc'),
path('api/docs/swagger', schema_view.with_ui('swagger'), name='docs-swagger'),
path('api/s3-upload/', include('s3_file_field.urls')),
path('summary/', image_summary, name='image-summary'),
path('gallery/', GalleryView.as_view(), name='gallery'),
path('accounts/', include('allauth.urls')),
]

if settings.DEBUG:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ def rollback_default_site(apps: StateApps, schema_editor: BaseDatabaseSchemaEdit

class Migration(migrations.Migration):

initial = True

dependencies = [
# This is the final sites app migration
('sites', '0002_alter_domain_unique'),
Expand Down

0 comments on commit 3c15808

Please sign in to comment.