-
Notifications
You must be signed in to change notification settings - Fork 722
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Develop #377
base: master
Are you sure you want to change the base?
Develop #377
Conversation
cinema/urls.py
Outdated
cinema_hall_detail, | ||
name="cinema-hall-detail" | ||
), | ||
path("", include(router.urls)), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to include a router when basepath is not provided. Instead use:
urlpatterns = [list of urls] + router.urls
cinema/views.py
Outdated
def patch(self, request, pk): | ||
genre = self.get_object(pk) | ||
serializer = GenreSerializer(genre, request.data, partial=True) | ||
if serializer.is_valid(): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use serializer.is_valid(raise_exception=True) instead of if statement
No description provided.