2017-01-24 01:48:35 +01:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
|
|
|
from django.utils.translation import ugettext as _
|
|
|
|
|
2017-10-28 00:07:31 +02:00
|
|
|
from zerver.decorator import human_users_only
|
2017-01-24 01:48:35 +01:00
|
|
|
from zerver.lib.actions import do_mark_hotspot_as_read
|
|
|
|
from zerver.lib.hotspots import ALL_HOTSPOTS
|
2020-06-11 00:54:34 +02:00
|
|
|
from zerver.lib.request import REQ, has_request_variables
|
2017-01-24 01:48:35 +01:00
|
|
|
from zerver.lib.response import json_error, json_success
|
|
|
|
from zerver.lib.validator import check_string
|
|
|
|
from zerver.models import UserProfile
|
|
|
|
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2017-07-31 20:28:15 +02:00
|
|
|
@human_users_only
|
2017-01-24 01:48:35 +01:00
|
|
|
@has_request_variables
|
2017-10-27 02:18:49 +02:00
|
|
|
def mark_hotspot_as_read(request: HttpRequest, user: UserProfile,
|
|
|
|
hotspot: str=REQ(validator=check_string)) -> HttpResponse:
|
2017-01-24 01:48:35 +01:00
|
|
|
if hotspot not in ALL_HOTSPOTS:
|
2020-06-15 23:22:24 +02:00
|
|
|
return json_error(_('Unknown hotspot: {}').format(hotspot))
|
2017-01-24 01:48:35 +01:00
|
|
|
do_mark_hotspot_as_read(user, hotspot)
|
|
|
|
return json_success()
|