mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-13 02:41:08 +00:00
8b3106b852
Fixes #377
11 lines
290 B
Python
11 lines
290 B
Python
from users.services import AnnouncementService
|
|
|
|
|
|
def user_context(request):
|
|
return {
|
|
"announcements": (
|
|
AnnouncementService(request.user).visible()
|
|
if request.user.is_authenticated
|
|
else AnnouncementService.visible_anonymous()
|
|
)
|
|
}
|