urls: Move the json/tutorial_status endpoint to be an API-style route.

This commit is contained in:
Alena Volkova
2017-10-09 16:55:38 -04:00
committed by Tim Abbott
parent 0e653d198d
commit 79560e21bf
5 changed files with 10 additions and 8 deletions

View File

@@ -1,15 +1,14 @@
from django.http import HttpRequest, HttpResponse
from zerver.decorator import authenticated_json_post_view, has_request_variables, REQ
from zerver.decorator import has_request_variables, REQ
from zerver.lib.response import json_success
from zerver.lib.validator import check_string
from zerver.models import UserProfile
@authenticated_json_post_view
@has_request_variables
def json_tutorial_status(request, user_profile,
status=REQ(validator=check_string)):
def set_tutorial_status(request, user_profile,
status=REQ(validator=check_string)):
# type: (HttpRequest, UserProfile, str) -> HttpResponse
if status == 'started':
user_profile.tutorial_status = UserProfile.TUTORIAL_STARTED