mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-16 23:09:23 +00:00
Mise à jour de février (#581)
Co-authored-by: Thomas Girod <thgirod@hotmail.com> Co-authored-by: Julien Constant <julienconstant190@gmail.com> Co-authored-by: Skia <skia@hya.sk>
This commit is contained in:
@ -23,16 +23,16 @@
|
||||
#
|
||||
#
|
||||
|
||||
from django.urls import re_path
|
||||
from django.urls import path
|
||||
|
||||
from rootplace.views import *
|
||||
|
||||
urlpatterns = [
|
||||
re_path(r"^merge$", MergeUsersView.as_view(), name="merge"),
|
||||
re_path(
|
||||
r"^forum/messages/delete$",
|
||||
path("merge/", MergeUsersView.as_view(), name="merge"),
|
||||
path(
|
||||
"forum/messages/delete/",
|
||||
DeleteAllForumUserMessagesView.as_view(),
|
||||
name="delete_forum_messages",
|
||||
),
|
||||
re_path(r"^logs$", OperationLogListView.as_view(), name="operation_logs"),
|
||||
path("logs/", OperationLogListView.as_view(), name="operation_logs"),
|
||||
]
|
||||
|
Reference in New Issue
Block a user