Expand the comment contextualizing the /compatibility endpoint.

This commit is contained in:
Jack Zhang 2018-11-28 17:48:11 -08:00 committed by Tim Abbott
parent ba7e78bc65
commit ce95973c22
1 changed files with 3 additions and 1 deletions

View File

@ -596,7 +596,9 @@ urls += [
url(r'^api/v1/get_auth_backends', zerver.views.auth.api_get_auth_backends, url(r'^api/v1/get_auth_backends', zerver.views.auth.api_get_auth_backends,
name='zerver.views.auth.api_get_auth_backends'), name='zerver.views.auth.api_get_auth_backends'),
# used by mobile apps to check if they are compatible with the server # Used as a global check by all mobile clients, which currently send
# requests to https://zulipchat.com/compatibility almost immediately after
# starting up.
url(r'^compatibility$', zerver.views.compatibility.check_compatibility), url(r'^compatibility$', zerver.views.compatibility.check_compatibility),
# This json format view used by the mobile apps accepts a username # This json format view used by the mobile apps accepts a username