mirror of
https://github.com/sissbruecker/linkding.git
synced 2025-08-07 10:58:25 +02:00

* Make web archive integration opt-in * Add toast message about web archive integration opt-in * Improve wording for web archive setting * Add toast admin * Fix toast clear button visited styles * Add test for redirect * Improve wording * Ensure redirects to same domain * Improve wording * Fix snapshot test Co-authored-by: Sascha Ißbrücker <sascha.issbruecker@gmail.com>
20 lines
628 B
Python
20 lines
628 B
Python
from django.contrib.auth.decorators import login_required
|
|
from django.http import HttpResponseRedirect, Http404
|
|
from django.urls import reverse
|
|
|
|
from bookmarks.models import Toast
|
|
from bookmarks.utils import get_safe_return_url
|
|
|
|
|
|
@login_required
|
|
def acknowledge(request, toast_id: int):
|
|
try:
|
|
toast = Toast.objects.get(pk=toast_id, owner=request.user)
|
|
except Toast.DoesNotExist:
|
|
raise Http404('Toast does not exist')
|
|
toast.acknowledged = True
|
|
toast.save()
|
|
|
|
return_url = get_safe_return_url(request.GET.get('return_url'), reverse('bookmarks:index'))
|
|
return HttpResponseRedirect(return_url)
|