mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-19 10:19:27 -05:00
/api/remote_version/
: Cache response for 4h
This commit is contained in:
parent
61cb5103ed
commit
247a2a3e82
@ -45,6 +45,7 @@ from django.utils.timezone import make_aware
|
|||||||
from django.utils.translation import get_language
|
from django.utils.translation import get_language
|
||||||
from django.views import View
|
from django.views import View
|
||||||
from django.views.decorators.cache import cache_control
|
from django.views.decorators.cache import cache_control
|
||||||
|
from django.views.decorators.cache import cache_page
|
||||||
from django.views.decorators.http import condition
|
from django.views.decorators.http import condition
|
||||||
from django.views.decorators.http import last_modified
|
from django.views.decorators.http import last_modified
|
||||||
from django.views.generic import TemplateView
|
from django.views.generic import TemplateView
|
||||||
@ -2208,6 +2209,7 @@ class UiSettingsView(GenericAPIView):
|
|||||||
),
|
),
|
||||||
)
|
)
|
||||||
class RemoteVersionView(GenericAPIView):
|
class RemoteVersionView(GenericAPIView):
|
||||||
|
@method_decorator(cache_page(60 * 60 * 4))
|
||||||
def get(self, request, format=None):
|
def get(self, request, format=None):
|
||||||
remote_version = "0.0.0"
|
remote_version = "0.0.0"
|
||||||
is_greater_than_current = False
|
is_greater_than_current = False
|
||||||
|
Loading…
x
Reference in New Issue
Block a user