Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJonatan Witoszek
15,384 Pointsdetail_route is being deprecated
Just a note to everyone who will be following "Viewsets and Routers" video form Django REST Framework course on their own computer in the future.
While working on it I've got a note from PyCharm saying that the detail_route
decorator will be replaced in favour of action
in future versions of DRF. This is described in the announcments.
So in our case we need to change:
@detail_route(methods=['get'])
to
@action(detail=True, methods=['get'])
(also don't forget to import action
instead of detail_route
)