mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-22 11:23:02 +00:00
10 lines
309 B
Python
10 lines
309 B
Python
from django.http import HttpResponse
|
|
|
|
custom_css_cache_max_age = 2592000 # 30 days
|
|
|
|
|
|
def custom_css(request):
|
|
css = request.user_profile.custom_css
|
|
response = HttpResponse(css, content_type="text/css")
|
|
response["Cache-Control"] = f"public, max-age={custom_css_cache_max_age}"
|
|
return response
|