Essentially, I\'m trying to find a good way to attach more views to a Router without creating a custom Router. What\'s a good way to accomplish this?
He
You define method like you do now, but you need to use the same url as method name and add link decorator, so for
/myobjects/123/locations/
You add method like this
@link(permission_classes=[...]) def locations(self, request, pk=None): ...
and router will pick it automatically.