Skip to content
Snippets Groups Projects
Commit 16b7d889 authored by Elias Sagmo Larsen's avatar Elias Sagmo Larsen
Browse files

pylint/urls

parent 3593863f
No related branches found
No related tags found
No related merge requests found
Pipeline #127129 failed
from django.urls import path, include
from comments.models import Comment, Like
from django.urls import path
from comments.views import CommentList, CommentDetail, LikeList, LikeDetail
from rest_framework.urlpatterns import format_suffix_patterns
urlpatterns = [
path("api/comments/", CommentList.as_view(), name="comment-list"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment