2017-01-24 01:48:35 +01:00
|
|
|
from django.http import HttpRequest, HttpResponse
|
2021-04-16 00:57:30 +02:00
|
|
|
from django.utils.translation import gettext as _
|
2017-01-24 01:48:35 +01:00
|
|
|
|
2024-05-10 16:17:04 +02:00
|
|
|
from zerver.actions.onboarding_steps import do_mark_onboarding_step_as_read
|
2017-10-28 00:07:31 +02:00
|
|
|
from zerver.decorator import human_users_only
|
2021-06-30 18:35:50 +02:00
|
|
|
from zerver.lib.exceptions import JsonableError
|
2024-05-10 16:17:04 +02:00
|
|
|
from zerver.lib.onboarding_steps import ALL_ONBOARDING_STEPS
|
2021-06-30 18:35:50 +02:00
|
|
|
from zerver.lib.response import json_success
|
2024-06-06 14:12:39 +02:00
|
|
|
from zerver.lib.typed_endpoint import typed_endpoint
|
2017-01-24 01:48:35 +01:00
|
|
|
from zerver.models import UserProfile
|
|
|
|
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2017-07-31 20:28:15 +02:00
|
|
|
@human_users_only
|
2024-06-06 14:12:39 +02:00
|
|
|
@typed_endpoint
|
2023-12-01 11:52:41 +01:00
|
|
|
def mark_onboarding_step_as_read(
|
2024-06-06 14:12:39 +02:00
|
|
|
request: HttpRequest, user: UserProfile, *, onboarding_step: str
|
2021-02-12 08:19:30 +01:00
|
|
|
) -> HttpResponse:
|
2023-12-01 11:52:41 +01:00
|
|
|
if not any(step.name == onboarding_step for step in ALL_ONBOARDING_STEPS):
|
|
|
|
raise JsonableError(
|
|
|
|
_("Unknown onboarding_step: {onboarding_step}").format(onboarding_step=onboarding_step)
|
|
|
|
)
|
|
|
|
do_mark_onboarding_step_as_read(user, onboarding_step)
|
2022-01-31 13:44:02 +01:00
|
|
|
return json_success(request)
|