2024-03-25 14:33:16 -04:00
|
|
|
"""
|
|
|
|
|
URL configuration for peer_notes project.
|
|
|
|
|
|
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
|
|
|
https://docs.djangoproject.com/en/4.2/topics/http/urls/
|
|
|
|
|
Examples:
|
|
|
|
|
Function views
|
|
|
|
|
1. Add an import: from my_app import views
|
|
|
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
|
|
|
Class-based views
|
|
|
|
|
1. Add an import: from other_app.views import Home
|
|
|
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
|
|
|
Including another URLconf
|
|
|
|
|
1. Import the include() function: from django.urls import include, path
|
|
|
|
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
from django.urls import path
|
2024-03-26 14:07:05 -04:00
|
|
|
from api.user_login import LoginView, SignupView, PollOnlineView
|
|
|
|
|
from api import views
|
2024-03-25 14:33:16 -04:00
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
|
path("api/login/", LoginView.as_view(), name="login"),
|
|
|
|
|
path("api/signup/", SignupView.as_view(), name="signup"),
|
2024-03-26 14:07:05 -04:00
|
|
|
path("api/poll/", PollOnlineView.as_view(), name="poll"),
|
|
|
|
|
path("api/topics/", views.TopicListCreateAPIView.as_view(), name="topic-list"),
|
|
|
|
|
path(
|
|
|
|
|
"api/topics/<int:pk>/", views.TopicDetailAPIView.as_view(), name="topic-detail"
|
|
|
|
|
),
|
|
|
|
|
path(
|
|
|
|
|
"api/professors/",
|
|
|
|
|
views.ProfessorListCreateAPIView.as_view(),
|
|
|
|
|
name="professor-list",
|
|
|
|
|
),
|
|
|
|
|
path(
|
|
|
|
|
"api/professors/<int:pk>/",
|
|
|
|
|
views.ProfessorDetailAPIView.as_view(),
|
|
|
|
|
name="professor-detail",
|
|
|
|
|
),
|
|
|
|
|
path(
|
|
|
|
|
"api/semesters/",
|
|
|
|
|
views.SemesterListCreateAPIView.as_view(),
|
|
|
|
|
name="semester-list",
|
|
|
|
|
),
|
|
|
|
|
path(
|
|
|
|
|
"api/semesters/<int:pk>/",
|
|
|
|
|
views.SemesterDetailAPIView.as_view(),
|
|
|
|
|
name="semester-detail",
|
|
|
|
|
),
|
|
|
|
|
path("api/courses/", views.CourseListCreateAPIView.as_view(), name="course-list"),
|
|
|
|
|
path(
|
|
|
|
|
"api/courses/<int:pk>/",
|
|
|
|
|
views.CourseDetailAPIView.as_view(),
|
|
|
|
|
name="course-detail",
|
|
|
|
|
),
|
|
|
|
|
path("api/files/", views.FileListCreateAPIView.as_view(), name="file-list"),
|
2024-04-12 17:28:57 -04:00
|
|
|
path(
|
|
|
|
|
"api/files/<int:file_id>/upvote/",
|
|
|
|
|
views.UpvoteFile.as_view(),
|
|
|
|
|
name="upvote-file",
|
|
|
|
|
),
|
|
|
|
|
path(
|
|
|
|
|
"api/files/<int:file_id>/downvote/",
|
|
|
|
|
views.DownvoteFile.as_view(),
|
|
|
|
|
name="downvote-file",
|
|
|
|
|
),
|
2024-04-22 12:51:22 -04:00
|
|
|
path(
|
|
|
|
|
"api/files/<int:file_id>/add-peer/",
|
|
|
|
|
views.AddPeerToFile.as_view(),
|
|
|
|
|
name="add-peer",
|
|
|
|
|
),
|
2024-03-26 14:07:05 -04:00
|
|
|
path("api/files/<int:pk>/", views.FileDetailAPIView.as_view(), name="file-detail"),
|
2024-04-20 20:10:40 -04:00
|
|
|
path("api/report_user/", views.ReportUserView.as_view(), name="report-user"),
|
2024-03-26 19:39:04 -04:00
|
|
|
path("api/register/", views.RegisterFile.as_view(), name="file-register"),
|
2024-04-12 17:28:57 -04:00
|
|
|
path("api/files/filter/", views.FileFilterView.as_view(), name="file-filter-view"),
|
2024-04-22 09:57:12 -04:00
|
|
|
path("api/get-peer-files/", views.UserFilesView.as_view(), name="user-files-view"),
|
2024-03-25 14:33:16 -04:00
|
|
|
]
|