mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 05:53:43 +00:00
models: Add external_account in custom profile field types.
Add new custom profile field type, External account. External account field links user's social media profile with account. e.g. GitHub, Twitter, etc. Fixes part of #12302
This commit is contained in:
committed by
Tim Abbott
parent
3368589df2
commit
d7ee2aced1
@@ -53,7 +53,7 @@ from zerver.models import Client, Message, Realm, UserPresence, UserProfile, Cus
|
||||
get_default_stream_groups, CustomProfileField, Stream
|
||||
from zproject.backends import email_auth_enabled, password_auth_enabled
|
||||
from version import ZULIP_VERSION
|
||||
|
||||
from zerver.lib.external_accounts import DEFAULT_EXTERNAL_ACCOUNTS
|
||||
|
||||
def get_raw_user_data(realm: Realm, client_gravatar: bool) -> Dict[int, Dict[str, str]]:
|
||||
user_dicts = get_realm_user_dicts(realm.id)
|
||||
@@ -218,6 +218,8 @@ def fetch_initial_state_data(user_profile: UserProfile,
|
||||
state['realm_plan_type'] = realm.plan_type
|
||||
state['plan_includes_wide_organization_logo'] = realm.plan_type != Realm.LIMITED
|
||||
state['upgrade_text_for_wide_organization_logo'] = str(Realm.UPGRADE_TEXT_STANDARD)
|
||||
state['realm_default_external_accounts'] = DEFAULT_EXTERNAL_ACCOUNTS
|
||||
|
||||
if realm.notifications_stream and not realm.notifications_stream.deactivated:
|
||||
notifications_stream = realm.notifications_stream
|
||||
state['realm_notifications_stream_id'] = notifications_stream.id
|
||||
|
||||
Reference in New Issue
Block a user