zproject: Change comments to refer to Realm.string_id instead of domain.

This commit is contained in:
Rishi Gupta
2017-03-14 16:13:00 -07:00
committed by Tim Abbott
parent ba228b75b1
commit 4627ff1b4b
2 changed files with 2 additions and 2 deletions

View File

@@ -258,7 +258,7 @@ LANGUAGE_CODE = 'en-us'
# This is used so that application data can hook into specific site(s) and a
# single database can manage content for multiple sites.
#
# We set this site's domain to 'zulip.com' in populate_db.
# We set this site's string_id to 'zulip' in populate_db.
SITE_ID = 1
# If you set this to False, Django will make some optimizations so as not

View File

@@ -125,7 +125,7 @@ i18n_urls = [
url(r'^register/$', zerver.views.registration.accounts_home, name='register'),
url(r'^login/$', zerver.views.auth.login_page, {'template_name': 'zerver/login.html'}, name='zerver.views.auth.login_page'),
# A registration page that passes through the domain, for totally open realms.
# A registration page that passes through the Realm.string_id, for totally open realms.
url(r'^register/(?P<realm_str>\S+)/$', zerver.views.registration.accounts_home_with_realm_str,
name='zerver.views.registration.accounts_home_with_realm_str'),