diff options
Diffstat (limited to 'api/viewsets.py')
-rw-r--r-- | api/viewsets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/api/viewsets.py b/api/viewsets.py index 61e93058..17024fe8 100644 --- a/api/viewsets.py +++ b/api/viewsets.py @@ -34,7 +34,7 @@ from .serializers import ( ) -class BotSettingViewSet(UpdateModelMixin, GenericViewSet): +class BotSettingViewSet(RetrieveModelMixin, UpdateModelMixin, GenericViewSet): """ View providing update operations on bot setting routes. """ |