Skip to content

Commit

Permalink
Updates plugin for 1.7 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrbyers authored and mauromsl committed Sep 6, 2024
1 parent f7f86e0 commit 98c584b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
__license__ = "AGPL v3"
__maintainer__ = "Birkbeck Centre for Technology and Publishing"

from django.conf.urls import url
from django.urls import re_path

from plugins.bepress import views

urlpatterns = [
url(r'^$', views.index, name='bepress_index'),
url(r'^index/$', views.index, name='bepress_index'),
url(r'^import/$', views.import_bepress_articles, name='bepress_import'),
url(r'^csv_import/$', views.import_bepress_csv, name='bepress_csv_import'),
re_path(r'^$', views.index, name='bepress_index'),
re_path(r'^index/$', views.index, name='bepress_index'),
re_path(r'^import/$', views.import_bepress_articles, name='bepress_import'),
re_path(r'^csv_import/$', views.import_bepress_csv, name='bepress_csv_import'),
]

0 comments on commit 98c584b

Please sign in to comment.