[WEB-4795] chore: remove caching decorator from WorkspaceStatesEndpoint #7714
This commit is contained in:
parent
54e4a0f6dd
commit
49a40031a4
1 changed files with 0 additions and 2 deletions
|
|
@ -7,7 +7,6 @@ from plane.app.serializers import StateSerializer
|
|||
from plane.app.views.base import BaseAPIView
|
||||
from plane.db.models import State
|
||||
from plane.app.permissions import WorkspaceEntityPermission
|
||||
from plane.utils.cache import cache_response
|
||||
from collections import defaultdict
|
||||
|
||||
|
||||
|
|
@ -15,7 +14,6 @@ class WorkspaceStatesEndpoint(BaseAPIView):
|
|||
permission_classes = [WorkspaceEntityPermission]
|
||||
use_read_replica = True
|
||||
|
||||
@cache_response(60 * 60 * 2)
|
||||
def get(self, request, slug):
|
||||
states = State.objects.filter(
|
||||
workspace__slug=slug,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue