mirror of
https://github.com/sissbruecker/linkding
synced 2024-11-10 14:14:18 +00:00
f92c3dd403
* 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>
12 lines
373 B
Python
12 lines
373 B
Python
from bookmarks.models import Toast
|
|
|
|
|
|
def toasts(request):
|
|
user = request.user if hasattr(request, 'user') else None
|
|
toast_messages = Toast.objects.filter(owner=user, acknowledged=False) if user and user.is_authenticated else []
|
|
has_toasts = len(toast_messages) > 0
|
|
|
|
return {
|
|
'has_toasts': has_toasts,
|
|
'toast_messages': toast_messages,
|
|
}
|