Skip to content
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

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open

Develop #377

wants to merge 9 commits into from

Conversation

vlodek69
Copy link

No description provided.

cinema/urls.py Outdated
cinema_hall_detail,
name="cinema-hall-detail"
),
path("", include(router.urls)),

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():

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants