Skip to content

Commit

Permalink
Merge pull request #315 from intuitem/hotfix/backup-import
Browse files Browse the repository at this point in the history
Remove login_required decorator
  • Loading branch information
nas-tabchiche authored Apr 24, 2024
2 parents a024bb7 + 18562db commit 296534d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions backend/serdes/urls.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
from django.urls import path
from django.contrib.auth.decorators import login_required

from . import views

urlpatterns = [
path("dump-db/", login_required(views.dump_db_view), name="dump-db"),
path("dump-db/", views.dump_db_view, name="dump-db"),
path(
"load-backup/",
login_required(views.LoadBackupView.as_view()),
views.LoadBackupView.as_view(),
name="load-backup",
),
]

0 comments on commit 296534d

Please sign in to comment.