mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-25 12:50:23 +00:00
13 lines
315 B
Python
13 lines
315 B
Python
from django.http import JsonResponse
|
|
from django.conf import settings
|
|
|
|
|
|
def manifest(request):
|
|
response = {
|
|
"short_name": "linkding",
|
|
"start_url": "bookmarks",
|
|
"display": "standalone",
|
|
"scope": "/" + settings.LD_CONTEXT_PATH,
|
|
}
|
|
|
|
return JsonResponse(response, status=200)
|