diff options
Diffstat (limited to 'omaha_server/omaha/api.py')
-rw-r--r-- | omaha_server/omaha/api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/omaha_server/omaha/api.py b/omaha_server/omaha/api.py index 58712fe..4fda594 100644 --- a/omaha_server/omaha/api.py +++ b/omaha_server/omaha/api.py @@ -167,7 +167,7 @@ class ChannelViewSet(viewsets.ModelViewSet): serializer_class = ChannelSerializer -class VersionViewSet(BaseView): +class VersionViewSet(BaseView, mixins.UpdateModelMixin): queryset = Version.objects.all().order_by('-id') serializer_class = VersionSerializer |