mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 05:53:43 +00:00
settings: Add realm setting for Zulip communities directory.
Adds `want_advertise_in_communities_directory` to the realm model to track organizations that give permission to be listed on such a site / directory on zulip.com. Adds a checkbox to the organization profile admin for organizations to give permission to be advertised in the Zulip communities directory. Adds a help center article about the Zulip communities directory and uses a shared intro documentation file to create sections in the articles on creating an organization profile and moderating open organizations. Co-authored-by: Alya Abbott <alya@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
1ac8673989
commit
44c9b788f9
@@ -293,6 +293,10 @@ class Realm(models.Model):
|
||||
# setting also controls API access of web-public streams.
|
||||
enable_spectator_access: bool = models.BooleanField(default=False)
|
||||
|
||||
# Whether organization has given permission to be advertised in the
|
||||
# Zulip communities directory.
|
||||
want_advertise_in_communities_directory: bool = models.BooleanField(default=False)
|
||||
|
||||
# Whether the organization has enabled inline image and URL previews.
|
||||
inline_image_preview: bool = models.BooleanField(default=True)
|
||||
inline_url_embed_preview: bool = models.BooleanField(default=False)
|
||||
@@ -711,6 +715,7 @@ class Realm(models.Model):
|
||||
user_group_edit_policy=int,
|
||||
video_chat_provider=int,
|
||||
waiting_period_threshold=int,
|
||||
want_advertise_in_communities_directory=bool,
|
||||
wildcard_mention_policy=int,
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user